如果源是不在您域中的某个网站,是否可以在 iframe 中隐藏 DIV?我有一个加载网站但想隐藏特定 div 的 iframe。
例如:隐藏 DIV id = 滑块 src = www.somesitecom.com
我尝试过的没有成功;是因为不允许跨站点脚本吗?
$(function(){
var f=$('#foo')
f.load(function(){
f.contents().find('#slider').hide();
})
})
<iframe id="foo" src="http://somesite.com" style="width:1200px; height:800; border:none; margin-left:-60px;"/></iframe>
谢谢,