标签:
jQuery getScript()方法加载JavaScript
jQuery.getScript("/path/to/myscript.js", function(data, status, jqxhr) { /* 做一些加载完成后需要执行的事情 */ });
jQuery.getScript("/path/to/myscript.js") .done(function() { /* 耶,没有问题,这里可以干点什么 */ }) .fail(function() { /* 靠,马上执行挽救操作 */ });
<!DOCTYPE html > <html> <head> <meta charset="utf-8"> <title></title> <script src="jquery-1.7.2.min.js" type="text/javascript"></script> <script type="text/javascript"> //定义一个全局script的标记数组,用来标记是否某个script已经下载到本地 var scriptsArray = new Array(); $.cachedScript = function (url, options) { //循环script标记数组 for (var s in scriptsArray) { //console.log(scriptsArray[s]); //如果某个数组已经下载到了本地 if (scriptsArray[s]==url) { return { //则返回一个对象字面量,其中的done之所以叫做done是为了与下面$.ajax中的done相对应 done: function (method) { if (typeof method == ‘function‘){ //如果传入参数为一个方法 method(); } } }; } } //这里是jquery官方提供类似getScript实现的方法,也就是说getScript其实也就是对ajax方法的一个拓展 options = $.extend(options || {}, { dataType: "script", url: url, cache:true //其实现在这缓存加与不加没多大区别 }); scriptsArray.push(url); //将url地址放入script标记数组中 return $.ajax(options); }; $(function () { $(‘#btn‘).bind(‘click‘, function () { $.cachedScript(‘t1.js‘).done(function () { alertMe(); }); }); $(‘#btn2‘).bind(‘click‘, function () { $.getScript(‘t1.js‘).done(function () { alertMe(); }); }); }); </script> </head> <body> <button id="btn">自定义的缓存方法</button> <br /> <button id="btn2">getScript</button> </body> </html>
t1.js中代码也就是一个函数
function alertMe() { alert(‘clicked me‘); }
标签:
原文地址:http://www.cnblogs.com/sovf/p/4308876.html