获取iframe 内元素的方法
1,原生的方法
首先给iframe 设置 id 属性
var obj = document.getElementById('iframe').contentWindow;
setTimeout(function(){
// $('#iframe').contents().find('#box').html('wohao');
obj.document.getElementById('box').innerHTML = '222';
},0)
兼容ie、火狐和谷歌,具体浏览器的版本没有去测试
2,通过jquery 方法获取
$('#iframe').contents().find('#box').html('jquery');
不兼容ie
如果您看了本篇博客,觉得对您有所收获,请点击右下角的 [推荐]
如果您想转载本博客,请注明出处
如果您对本文有意见或者建议,欢迎留言
感谢您的阅读,请关注我的后续博客