/*
*
*Author:Ken Lee
*Time:2007-04-07
*Note:该JavaScript函数是在JS里动态的引入JS脚本.
*Edition:1.0.0
*
*/
function
LoadJs(filePath){
var
head
=
document.getElementsByTagName('head').item(
0
);
var
script
=
document.createElement('script');
script.src
=
file;
script.type
=
"
text/javascript
"
;
head.appendChild(script);
}
posted on 2007-04-07 08:50
Ken.Lee 阅读(470)
评论(0) 编辑 收藏 所属分类:
JavaScript