JS在父窗口中获取iframe中的元素; 在iframe中获取父窗口的元素

在父窗口中获取iframe中的元素
JS原生写法:

  1. window.frames["iframe的name值"].document.getElementById("iframe中控件的ID").click();
jQuery写法:
【JS在父窗口中获取iframe中的元素; 在iframe中获取父窗口的元素】
  1. $("#iframe的ID").contents().find("#iframe中的控件ID").click();//方法一
  1. $("#iframe中的控件ID",document.frames("frame的name").document).click();//方法二
在iframe中获取父窗口的元素JS原生写法:
  1. window.parent.document.getElementById("父窗口的元素ID").click();
jQuery写法:
  1. $('#父窗口中的元素ID',parent.document).click();
原创文章转载请注明出处!原文链接:https://www.exp99.com/jswz/f2e/js_iframel

    秒懂生活扩展阅读