1) 判断元素是否存在
$("#yourid").length>0 表示id为yourid的元素存在,否则表示不存在; 2) 获取父窗口的元素//这个方法没问题,我用window.open(URL)打开的子窗口 $("#yourid", opener.document) 等同于普通写法opener.document.getElementById("yourid"). 3)判断父窗口指定元素是否存在 $("#yourid",opener.document).length>0表示存在,否则不存在 4)在父窗口中操作,选中IFRAME中的所有单选钮 $(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true"); 5)在IFRAME中操作,选中父窗口中的所有单选钮 $(window.parent.document).find("input[@type='radio']").attr("checked","true"); 特别说明:新版(1.3以上)的jQuery,不支持@写法,请把@去掉, 如$(window.parent.document).find("input[@type='radio']").attr("checked","true");应改成$(window.parent.document).find("input[type='radio']").attr("checked","true"); |
jQuery 操作 父窗口
最新推荐文章于 2024-08-27 04:44:12 发布