欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery 查找iframe父級(jí)頁(yè)面元素的實(shí)現(xiàn)代碼

 更新時(shí)間:2011年08月28日 17:37:24   作者:  
jquery 查找iframe父級(jí)頁(yè)面元素的實(shí)現(xiàn)代碼,學(xué)習(xí)jquery的朋友可以參考下。
父頁(yè)面代碼
復(fù)制代碼 代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無(wú)標(biāo)題文檔</title>
</head>
<body>
<div style="height:300px; background-color:#CC9900"></div>
<div>
<iframe src="test_iframe.html"></iframe>
</div>
</body>
</html>

iframe頁(yè)面代碼
復(fù)制代碼 代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無(wú)標(biāo)題文檔</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
$("body",parent.document).append('hahaha');
</script>
</head>
<body>
iframe test--@mybest
</body>
</html>

 在jQuery的文檔上有這樣的記錄:
jQuery(html, [ownerDocument])
參數(shù)
html String
用于動(dòng)態(tài)創(chuàng)建DOM元素的HTML標(biāo)記字符串

ownerDocument (可選) Document
創(chuàng)建DOM元素所在的文檔


還是要多看,細(xì)看文檔啊,真是所謂:書(shū)讀百遍,其義自見(jiàn)啊!

------補(bǔ)記--------------------------

在測(cè)試時(shí),發(fā)現(xiàn)chrome如何也不能實(shí)現(xiàn)上述要求,后來(lái)看到網(wǎng)上有人指出iframe不能跨域,這是問(wèn)題之一,另一個(gè)原因是要放到一個(gè)站點(diǎn)中去測(cè)試

如:http://localhost:8087/test.html

這樣chrome也就表現(xiàn)正常了

相關(guān)文章

最新評(píng)論