a.htm的内容
---------------------------------------------------
a.js 的内容
-------------------------------------------------
function load_b()
{
// 先把b.js调入
var head = document.getElementsByTagName('head');
var testScript = document.createElement('script');
testScript.src = 'b.js';
testScript.type = 'text/';
head[0].appendChild(testScript);
// 现在就可以调用b.js中的test()函数了
test();
}
window.onload = load_b;
b.js 的内容
------------------------------------------------
function test()
{
alert(bad);
}
阅读(1067) | 评论(0) | 转发(0) |