javascript

位置:IT落伍者 >> javascript >> 浏览文章

jquery动态加载js三种方法


发布日期:2021年10月24日
 
jquery动态加载js三种方法

<! 这里为你提供了三种动态加载js的jquery实例代码哦由于jquery是为用户提供方便的所以利用jquery动态加载文件只要一句话$getscript("testjs");就ok了

<!doctype html public "//wc//dtd xhtml transitional//en" "
<html xmlns="
<head>
<meta httpequiv="contenttype" content="text/html; charset=gb" />

<title>jquery 动态加载js三种方法</title>
<script language="网页特效">
$getscript("testjs"); //方法二

function loadjs(file){
var head = $(head)remove(#loadscript);
$("<scri"+"pt>"+"</scr"+"ipt>")attr({src:filetype:text/javascriptid:load})appendto(head);
}//够简单把!如果在浓缩以下你甚至可以用一行代码全部搞定
//方法三

$("<scri"+"pt>"+"</scr"+"ipt>")attr({src:filetype:text/javascriptid:load})appendto($(head)remove(#loadscript));

</script>
</head>

<body>
</body>
</html>

上一篇:js渐变显示渐变消失示例代码

下一篇:jquery中选择块并改变属性值的方法