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

jQuery的load()方法及其回调函数用法实例教程

程序员文章站 2022-07-01 15:18:45
本文实例讲述了jquery的load()方法及其回调函数用法。分享给大家供大家参考。具体如下: 下面的js代码演示了jquery的load()方法的使用,并演示了带回调函数(ca...

本文实例讲述了jquery的load()方法及其回调函数用法。分享给大家供大家参考。具体如下:

下面的js代码演示了jquery的load()方法的使用,并演示了带回调函数(callback)的load方法的使用

<!doctype html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
 $("button").click(function(){
  $("#p1").load("demo_test.txt",function(responsetxt,statustxt,xhr){
   if(statustxt=="success")
    alert("external content loaded successfully!");
   if(statustxt=="error")
    alert("error: "+xhr.status+": "+xhr.statustext);
  });
 });
});
</script>
</head>
<body>
<p id="p1"><h2>let jquery ajax change this text</h2></p>
<button>get external content</button>
</body>
</html>