jQuery處理frameset的事件之踩坑

如今狀況是,主頁有:html

<frameset rows="100,*">
<frame src="a.html" name="topFrame" target="main" />
<frame src="b.html" name="main" target="_self" />
</frameset>

在a.html裏寫js能夠移除已設置的事件處理函數函數

$('.openlogin').off()

而在主頁裏寫$('.openlogin',topFrame.document).off卻無做用,但該選擇器能夠正確選擇到topFrame裏的元素,也可使用text()方法改變內容
p.s. 測試使用jQuery1.10.2測試

相關文章
相關標籤/搜索