Home  >  Article  >  Web Front-end  >  iframe提取与改变父页面元素_html/css_WEB-ITnose

iframe提取与改变父页面元素_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:53:271287browse

一:利用jquery方法获得


1:取值

$(window.parent.document).find("#second_navigator").html();


2:改变父页面元素

$(window.parent.document).find("#second_navigator").html(“我是从iframe里传来的值”);


二:javaScript方法


1:取值

window.parent.document.getElementById("second_navigator").innerHTML;


2:改变父页面元素

window.parent.document.getElementById("second_navigator").innerHTML="我是从iframe里传来的值";

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn