欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现动态加载(按需加载)javascript文件的方法分析

程序员文章站 2023-11-27 21:11:04
本文实例讲述了jquery实现动态加载(按需加载)javascript文件的方法。分享给大家供大家参考,具体如下: 为了提高网页程序的性能,在很多情况下javascrip...

本文实例讲述了jquery实现动态加载(按需加载)javascript文件的方法。分享给大家供大家参考,具体如下:

为了提高网页程序的性能,在很多情况下javascript 是按需加载,而不是全部写在 <head>里面。利用jquery可以很方便的实现按需加载js.

$("#load").click(function(){
  $.getscript('helloworld.js', function() {
     $("#content").html('js 加载成功!');
  });
});

当id为“load" 的按钮被点击之后,将会动态加载 helloword.js , 然后就可以执行里面的方法。

<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
</head>
<body>
 <h1>利用 jquery 动态加载 js</h1>
<div id="content"></div>
<br/>
<button id="load">load javascript</button>
<button id="sayhello">say hello</button>
<script type="text/javascript">
$("#load").click(function(){
 $.getscript('js-example/helloworld.js', function() {
   $("#content").html('
     javascript is loaded successful! sayhello() function is loaded!
   ');
 });
});
$("#sayhello").click(function(){
 sayhello();
});
</script>
</body>
</html>

其中  helloworld.js 的代码如下:

function sayhello(){
  alert("hello ~我是动态加载的!");
}

更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery页面元素操作技巧汇总》、《jquery常见事件用法与技巧总结》、《jquery常用插件及用法总结》、《jquery扩展技巧总结》及《jquery选择器用法总结

希望本文所述对大家jquery程序设计有所帮助。