function loadJs(jsfile)
{
var htmltag = document.createElement('script');
htmltag.setAttribute("type","text/javascript");
htmltag.setAttribute("src",jsfile);
if(typeof htmltag != "undefined"){
document.getElementsByTagName("head")[0].appendChild(htmltag);
}
}

被折叠的 条评论
为什么被折叠?



