jquery中$get()方法json实例

技术分享

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jquery中json实例</title>

<style type="text/css">
          * { margin:0; padding:0;}
          body { font-size:12px;}
          .comment { margin-top:10px; padding:10px; border:1px solid #ccc;background:#DDD;}
          .comment h6 { font-weight:700; font-size:14px;}
          .para { margin-top:5px; text-indent:2em;background:#DDD;}
</style>


</head>
<body>


<p><input type="button" id="send" value="加载"/></p>
<div class="comment">已有评论:</div>
<div id="resText" ></div>


<script src="script/jquery-2.1.4.js"></script>
<script>
$(function(){                                  //定义jquery函数方法
$(‘#send‘).click(function() {             //给id为send的元素添加点击事件
$.getScript(‘script/test.js‘);             //直接加载test.js文件。
});

})
</script>

</body>
</html>


text.js文件

技术分享

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。