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>
上一篇: 万荣笑话大全,超级好笑!
下一篇: 聊聊恋爱、婚姻和婚宴。