JQuery------.load()从服务器获取数据并加载到某个类的方法

注意:需要在../Content/asf.txt路径下加入文件

html

<button class="Btn">按钮</button>

js

参数意义:

  • responseTxt - 包含调用成功时的结果内容
  • statusTXT - 包含调用的状态
  • xhr - 包含 XMLHttpRequest 对象
$(document).ready(function () {
$(".Btn").click(function () {
$(this).load("../Content/asf.txt", function (responseTxt, statusTxt, xhr) {
if (statusTxt == "success") {
alert("外部内容加载成功!");
alert(responseTxt);
}
if (statusTxt == "error")
alert("Error: " + xhr.status + ": " + xhr.statusText);
});
}); });
上一篇:pip安装包报错:Microsoft Visual C++ 9.0 is required Unable to find vcvarsall.bat


下一篇:oracle 之 cursor:创建存储过程批量执行DDL语句