通过iframe 异步加载script 通过异步请求另一页面的script 是不执行的,只返回html 原文件,因为返回的文本没有经过浏览器的解析执行。 看代码 a1.html 复制代码 代码如下: 无标题页 <BR>function testClick() <BR>{ <BR>document.getElementById("tsrc").src="a2.html" <BR>} <BR> a2.html 复制代码 代码如下: 无标题页 <BR>alert('我是异步script'); <BR>