中文字幕二区_国产精品免费在线观看_黄色网站观看_人人草人人澡_日本真实娇小xxxx

您的位置: 首頁 > 技術(shù)文檔 > 網(wǎng)頁制作 > JavaScript Table行定位效果
RDFa介紹——構(gòu)建更友好的web頁面 回到列表 CSS定位屬性Position詳解
 JavaScript Table行定位效果

作者:cloudgamer 時(shí)間: 2009-09-17 文檔類型:原創(chuàng) 來自:藍(lán)色理想

第 1 頁 JavaScript Table行定位效果 [1]
第 2 頁 JavaScript Table行定位效果 [2]
第 3 頁 JavaScript Table行定位效果 [3]
第 4 頁 JavaScript Table行定位效果 [4]
第 5 頁 JavaScript Table行定位效果 [5]
第 6 頁 JavaScript Table行定位效果 [6]
第 7 頁 JavaScript Table行定位效果 [7]
第 8 頁 JavaScript Table行定位效果 [8]

【獲取背景色】

如果td是背景透明的話顯然不太美觀,最好是找一個(gè)合適的顏色來填充。
程序用的方法是,從當(dāng)前td開始找,如果背景是透明的話,就再從父節(jié)點(diǎn)中找,直到找到有背景色為止。
一般來說透明的屬性值是"transparent",但在chrome里卻是"rgba(0, 0, 0, 0)",所以用了一個(gè)屬性來保存透明值:

this._transparent = isChrome ? "rgba(0, 0, 0, 0)" : "transparent";

并在GetBgColor獲取背景色程序中使用:

while (bgc == this._transparent && (node = node.parentNode) != document) {
    bgc = CurrentStyle(node).backgroundColor;
}
return bgc == this._transparent ? "#fff" : bgc;

如果全部都是透明的話就會(huì)返回白色(#fff)。
這里沒有考慮圖片背景的情況,畢竟圖片不一定會(huì)覆蓋整個(gè)背景。

【parentNode/offsetParent/parentElement】

上面用到了parentNode,這里順便說說它跟offsetParent,parentElement的區(qū)別。
先看看parentNode在w3c的說明:
The parent of this node. All nodes, except Document, DocumentFragment, and Attr may have a parent. However, if a node has just been created and not yet added to the tree, or if it has been removed from the tree, this is null.
很簡(jiǎn)單,就是節(jié)點(diǎn)的父節(jié)點(diǎn),看過dom都知道。

再看看比較容易區(qū)分的offsetParent,它在mozilla和msdn都說得比較模糊,在w3c就比較清楚了:
The offsetParent attribute, when called on element A, must return the element determined by the following algorithm:
1,If any of the following holds true return null and stop this algorithm:
A is the root element.
A is the HTML body element.
The computed value of the position property for element A is fixed.
2,If A is an area HTML element which has a map HTML element somewhere in the ancestor chain return the nearest ancestor map HTML element and stop this algorithm.
3,Return the nearest ancestor element of A for which at least one of the following is true and stop this algorithm if such an ancestor is found:
The computed value of the position property is not static.
It is the HTML body element.
The computed value of the position property of A is static and the ancestor is one of the following HTML elements: td, th, or table.
4,Return null.

這里主要有四點(diǎn):

  1. 如果是根元素、body元素或元素的position是fixed,將返回null;
  2. 如果是area元素,會(huì)返回最接近的map元素;
  3. 返回至少符合以下一個(gè)條件的最接近該節(jié)點(diǎn)的元素:1,元素的position不是static;2,是body元素;3,源元素的position是static,祖先元素中的以下元素:td,th或table。
  4. 返回null。

其中第三點(diǎn)是最常見的情況,詳細(xì)可以看下面的測(cè)試:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<body>
<table width="100" id="t">
    <tr>
        <td><div id="t1"></div></td>
        <td id="t2"><div style="position:absolute;">
                <div id="t3"></div>
            </div></td>
    </tr>
</table>
<div id="t4" style="position:fixed;"></div>
<script>
var $ = function (id) {
    return "string" == typeof id ? document.getElementById(id) : id;
};

alert($("t").offsetParent)//body
alert($("t1").offsetParent)//td
alert($("t2").offsetParent)//table
alert($("t3").offsetParent)//div
alert($("t4").offsetParent)//null
</script>
</body>
</html>

可見offsetParent跟parentNode的區(qū)別還是很大的。

而parentNode跟parentElement除了前者是w3c標(biāo)準(zhǔn),后者只ie支持,其他的區(qū)別就不是那么明顯了。
在ie中大部分情況下兩者的效果是一樣的,當(dāng)然如果是一模一樣的話ie就沒必要弄這么一個(gè)東西出來了,測(cè)試下面的代碼:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<body>
<script>
var o = document.createDocumentFragment().appendChild(document.createElement("div"));
alert(o.parentNode)
alert(o.parentNode.nodeType)//11
alert(o.parentElement)//null

alert(document.body.parentNode)
alert(document.body.parentNode.nodeType)//1
alert(document.body.parentElement)//html

alert(document.body.parentNode.parentNode)
alert(document.body.parentNode.parentNode.nodeType)//9
alert(document.body.parentElement.parentElement)//null
</script>
</body>
</html>

可以看到當(dāng)父節(jié)點(diǎn)的nodeType不是1,即不是element節(jié)點(diǎn)的話,它的parentElement就會(huì)是null。
這就明白了名字中“Element”的含義了。

出處:藍(lán)色理想
責(zé)任編輯:bluehearts

上一頁 JavaScript Table行定位效果 [3] 下一頁 JavaScript Table行定位效果 [5]

◎進(jìn)入論壇網(wǎng)頁制作、WEB標(biāo)準(zhǔn)化版塊參加討論,我還想發(fā)表評(píng)論

相關(guān)文章 更多相關(guān)鏈接
再談動(dòng)態(tài)添加樣式規(guī)則
Javascript函數(shù)類型判斷解決方案
認(rèn)識(shí)Javascript數(shù)組
解讀javascript的計(jì)時(shí)器 I
JavaScript獲取事件對(duì)象的注意點(diǎn)
作者文章 更多作者文章
JavaScript 浮動(dòng)定位提示效果
JavaScript 顏色梯度和漸變效果
JavaScript Tween算法及緩動(dòng)效果
仿Apple滑動(dòng)條(拖動(dòng))產(chǎn)品展示效果
JavaScript 圖片切割效果
關(guān)鍵字搜索 常規(guī)搜索 推薦文檔
熱門搜索:CSS Fireworks 設(shè)計(jì)比賽 網(wǎng)頁制作 web標(biāo)準(zhǔn) 用戶體驗(yàn) UE photoshop Dreamweaver Studio8 Flash 手繪 CG
站點(diǎn)最新 站點(diǎn)最新列表
周大!熬•自然”設(shè)計(jì)大賽開啟
國際體驗(yàn)設(shè)計(jì)大會(huì)7月將在京舉行
中國國防科技信息中心標(biāo)志征集
云計(jì)算如何讓安全問題可控
云計(jì)算是多數(shù)企業(yè)唯一擁抱互聯(lián)網(wǎng)的機(jī)會(huì)
阿里行云
云手機(jī)年終巨獻(xiàn),送禮標(biāo)配299起
阿里巴巴CTO王堅(jiān)的"云和互聯(lián)網(wǎng)觀"
1499元買真八核 云OS雙蛋大促
首屆COCO桌面手機(jī)主題設(shè)計(jì)大賽
欄目最新 欄目最新列表
淺談JavaScript編程語言的編碼規(guī)范
如何在illustrator中繪制臺(tái)歷
Ps簡(jiǎn)單繪制一個(gè)可愛的鉛筆圖標(biāo)
數(shù)據(jù)同步算法研究
用ps作簡(jiǎn)單的作品展示頁面
CSS定位機(jī)制之一:普通流
25個(gè)最佳最閃亮的Eclipse開發(fā)項(xiàng)目
Illustrator中制作針線縫制文字效果
Photoshop制作印刷凹凸字體
VS2010中創(chuàng)建自定義SQL Rule
>> 分頁 首頁 前頁 后頁 尾頁 頁次:4/81個(gè)記錄/頁 轉(zhuǎn)到 頁 共8個(gè)記錄

藍(lán)色理想版權(quán)申明:除部分特別聲明不要轉(zhuǎn)載,或者授權(quán)我站獨(dú)家播發(fā)的文章外,大家可以自由轉(zhuǎn)載我站點(diǎn)的原創(chuàng)文章,但原作者和來自我站的鏈接必須保留(非我站原創(chuàng)的,按照原來自一節(jié),自行鏈接)。文章版權(quán)歸我站和作者共有。

轉(zhuǎn)載要求:轉(zhuǎn)載之圖片、文件,鏈接請(qǐng)不要盜鏈到本站,且不準(zhǔn)打上各自站點(diǎn)的水印,亦不能抹去我站點(diǎn)水印。

特別注意:本站所提供的攝影照片,插畫,設(shè)計(jì)作品,如需使用,請(qǐng)與原作者聯(lián)系,版權(quán)歸原作者所有,文章若有侵犯作者版權(quán),請(qǐng)與我們聯(lián)系,我們將立即刪除修改。

您的評(píng)論
用戶名:  口令:
說明:輸入正確的用戶名和密碼才能參與評(píng)論。如果您不是本站會(huì)員,你可以注冊(cè) 為本站會(huì)員。
注意:文章中的鏈接、內(nèi)容等需要修改的錯(cuò)誤,請(qǐng)用報(bào)告錯(cuò)誤,以利文檔及時(shí)修改。
不評(píng)分 1 2 3 4 5
注意:請(qǐng)不要在評(píng)論中含與內(nèi)容無關(guān)的廣告鏈接,違者封ID
請(qǐng)您注意:
·不良評(píng)論請(qǐng)用報(bào)告管理員,以利管理員及時(shí)刪除。
·尊重網(wǎng)上道德,遵守中華人民共和國的各項(xiàng)有關(guān)法律法規(guī)
·承擔(dān)一切因您的行為而直接或間接導(dǎo)致的民事或刑事法律責(zé)任
·本站評(píng)論管理人員有權(quán)保留或刪除其管轄評(píng)論中的任意內(nèi)容
·您在本站發(fā)表的作品,本站有權(quán)在網(wǎng)站內(nèi)轉(zhuǎn)載或引用
·參與本評(píng)論即表明您已經(jīng)閱讀并接受上述條款
推薦文檔 | 打印文檔 | 評(píng)論文檔 | 報(bào)告錯(cuò)誤  
專業(yè)書推薦 更多內(nèi)容
網(wǎng)站可用性測(cè)試及優(yōu)化指南
《寫給大家看的色彩書1》
《跟我去香港》
眾妙之門—網(wǎng)站UI 設(shè)計(jì)之道
《Flex 4.0 RIA開發(fā)寶典》
《贏在設(shè)計(jì)》
犀利開發(fā)—jQuery內(nèi)核詳解與實(shí)踐
作品集 更多內(nèi)容

雜⑦雜⑧ Gold NORMANA V2