<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
代码如下 | 复制代码 |
<title>jquery 动态加载js三种方法</title> <script language="网页特效"> $.getscript("test.js"); |
//方法二
代码如下 | 复制代码 |
function loadjs(file){ var head = $('head').remove('#loadscript'); $("<scri"+"pt>"+"</scr"+"ipt>").attr({src:file,type:'text/javascript',id:'load'}).appendto(head); } |
//够简单把!如果在浓缩以下你甚至可以用一行代码全部搞定:
//方法三
代码如下 | 复制代码 |
$("<scri"+"pt>"+"</scr"+"ipt>").attr({src:file,type:'text/javascript',id:'load'}).appendto($('head').remove('#loadscript')); </script> |
</head>
<body>
</body>
</html>
时间: 2024-10-31 05:57:01