js jquery 操作iframe的幾種方法

2021-06-20 11:23:55 字數 671 閱讀 4126

文章**: or 

iframe在復合文件中經常用到,利用jquery操作iframe可以大幅提高效率,這裡收集一些基本操作

對於iframe框架:

dom方法:

父視窗操作iframe:window.frames["iframeson"].document

iframe操作父視窗: window.parent.document

jquery方法:

在父視窗中操作 選中iframe中的所有輸入框: $(window.frames["iframeson"].document).find(":text");

在iframe中操作 選中父視窗中的所有輸入框:$("#iframeid",parent.document.body).find(":text");

對於iframe框架的:

1.在父視窗中操作 選中iframe中的所有單選鈕

$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true");

2.在iframe中操作 選中父視窗中的所有單選鈕

$("#iframeid",parent.document.body).find("input[@type='radio']").attr("checked","true");

js jquery擴充套件

js擴充套件 1.string擴充套件 string.portotype.resetblank functions str.resetblank 2.數字擴充套件 number.portotype.lenwithzero function 3.數字擴充套件 array.portotype.min2m...

使用ifram迴圈載入網頁

通過定時器載入不同的網頁,settimeout 不能一直迴圈載入,所以使用setinterval 通過取 取載入,先定義var i 0 讓i 你陣列的長度進行i 沒執行一次i 一次 如 0 3 0 那麼就是取到你陣列中arr 0 的值 1 3 1 那麼取到的是你陣列中arr 1 的值 2 3 2 那...

JS Jquery獲取節點

js 1.通過byclassname,byid,bytagname,name 2.獲取子節點 通過childrens獲取子節點集,會把換行和空格 document.getelementby children 0 通過firstelementchild獲取第乙個子節點 document.getelem...