这篇文章主要为大家详细介绍了JS 动态创建iframe在IE下的两个问题解析,具有一定的参考价值,可以用来参考一下。
/**
* 动态创建iframe
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<form action="http://www.baidu.com/" method="post" target="testframe">
<input type="submit" value="Submit" />
</form>
<script>
var iframe = document.createElement('iframe');
iframe.id = 'testframe';
iframe.name = 'testframe';
document.body.insertBefore(iframe, document.body.firstChild);
</script>
解决方案
<script>
var div = document.createElement('div');
div.innerHTML = '<iframe id="testframe" name="testframe" />';
document.body.insertBefore(div, document.body.firstChild);
</script>
/**
* 动态创建iframe
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<script>
var iframe = document.createElement('iframe');
iframe.id = 'testframe';
iframe.name = 'testframe';
iframe.src = 'http://www.baidu.com/';
iframe.onload = function() { alert('onload'); };
document.body.insertBefore(iframe, document.body.firstChild);
</script>
解决方案
/**
* 动态创建iframe
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<script>
var iframe = document.createElement('iframe');
iframe.id = 'testframe';
iframe.name = 'testframe';
iframe.src = 'http://www.baidu.com/';
var fn = function() { alert('onload'); };
if (iframe.attachEvent) {
iframe.attachEvent('onload', fn);
} else {
iframe.onload = fn;
}
document.body.insertBefore(iframe, document.body.firstChild);
</script>
本文来自:http://www.q1010.com/174/1655-0.html
注:关于JS 动态创建iframe在IE下的两个问题解析的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:iframe
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。