我在somepage.html中有一个名为somepage.html的页面和另一个页面otherrame.html作为iframe somepage.html的来源是
<body><iframe src="otherpage.html name="frame"></body>
otherpage.html的来源是
<body onload="somefunction()" onunload="otherfunction" >the other content here</body>
我想在不触及otherpage.html(iframe)代码的情况下禁用onload功能。我想在somepage.html上禁用它 提前谢谢
答案 0 :(得分:0)
在IE中,您可以使用security =“restricted”attribute。它没有做你想要的(完全禁用javascript),但应强制IFRAME在不同的区域运行并阻止它访问你的页面。
HTML 5沙箱attribute一旦实施,也可能接近您要查找的内容。特别是allow-scripts。现在你只需要在大多数用户的浏览器中实现它;)