溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery 操作iframe、frameset

發(fā)布時間:2020-07-12 11:07:34 來源:網(wǎng)絡 閱讀:4088 作者:1473348968 欄目:web開發(fā)

============================================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要嚴格按照框架生成的默認名稱,否則會吃大虧

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI