- 浏览: 6207 次
- 性别:
- 来自: 南京
最新评论
文章列表
消除下载时的安全提示
- 博客分类:
- 消除下载时的安全提示
onbefore="(this.options.async=false)||true"
function adjustIFrame(iframe, height)
{
// jQuery(obj).attr("action")
if (!iframe.id || iframe.id=="")
{
iframe.id = "defaultIframe";
}
if (!iframe.name || iframe.name=="")
{
iframe.name = iframe.id;
}
var intHeight = parseInt(height);
...
document.frames()与document.frames[]的区别
<html>
<body>
<iframe id="ifr_1" name="ifr_1">
</iframe>
</body>
</html>
其中:
document.frames(“ifr_1”)可以得到一个window对象
document.frames[“ifr_1”]可以得到一个Html Element DOM对象