异步加载script的代码
异步加载script的代码
发布时间:2016-12-30 来源:查字典编辑
摘要:通过iframe异步加载script通过异步请求另一页面的script是不执行的,只返回html原文件,因为返回的文本没有经过浏览器的解析执...

通过iframe 异步加载script

通过异步请求另一页面的script 是不执行的,只返回html 原文件,因为返回的文本没有经过浏览器的解析执行。

看代码

a1.html

复制代码 代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>无标题页</title>

</head>

<script type="text/javascript">

function testClick()

{

document.getElementById("tsrc").src="a2.html"

}

</script>

<body>

<div><iframe id="tsrc"></iframe></div>

<input id="Button1" type="button" value="异步加载script"/>

</body>

</html>

a2.html

复制代码 代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>无标题页</title>

</head>

<body>

<script>

alert('我是异步script');

</script>

</body>

</html>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类