欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

三种动态加载js的jquery实例代码另附去除js方法

时间:2021-07-11 08:43:26|栏目:JavaScript代码|点击:
复制代码 代码如下:

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

jquery去除js
复制代码 代码如下:

$("script[src='../static/js/cpu_memory.js']").remove();
$("script[src='../static/js/wan_flow.js']").remove();

上一篇:Ctrl+Enter提交内容信息

栏    目:JavaScript代码

下一篇:微信小程序Redux绑定实例详解

本文标题:三种动态加载js的jquery实例代码另附去除js方法

本文地址:http://www.codeinn.net/misctech/155926.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有