您好,登錄后才能下訂單哦!
============================================iframe
<iframe name="a" src="a.aspx" width="300px" height="200px"></iframe> <iframe name="b" src="b.aspx" width="300px" height="200px"></iframe>
------------1,主框架操作a
$(window.frames["a"].document).find(".adiv").text("sdsd");
------------2,a操作主
$(".class1", window.parent.document).text("asdafasf");
或
$(window.parent.document).find(".class1").text("asdafasf");
或
$(self.parent.document).find(".class1").text("asdafasf");
------------3,a操作b
$(".bdiv",self.parent.frames["b"].document).text("asdas");
或
$(window.parent.frames["b"].document).find(".bdiv").text("asdafasf");
============================================frameset
<frameset rows="100,*" cols="*" frameborder="no" border="0" framespacing="0"> <frame src="top.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" /> <frameset cols="200,*" frameborder="no" border="0" framespacing="0"> <frame src="left.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" /> <frame src="main.html" name="mainFrame" id="mainFrame" title="mainFrame" /> </frameset> </frameset> <noframes><body> </body> </noframes>
------------left操作top
$(window.parent.frames["topFrame"].document).find(".topdiv").text("safsa");
注意:name要嚴格按照框架生成的默認名稱,否則會吃大虧
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。