码迷,mamicode.com
首页 > 其他好文 > 详细

iframe提取与改变父页面元素

时间:2014-11-25 16:28:23      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:javascript   jquery   前端   

一:利用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里传来的值";

iframe提取与改变父页面元素

标签:javascript   jquery   前端   

原文地址:http://blog.csdn.net/guorudi/article/details/41483441

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!