我是 jQuery 的新手。我需要在一段时间后调用该方法。
$(document).ready(function pageLoad() {
setTimeout('SetTime2()', 10000);
});
(function SetTime2() {
$.ajax({
type: "POST",
url: "MyPage.aspx/myStaticMethod",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
// Replace the div's content with the page method's return.
//$("#Result").text(msg.d);
}
});
});
它说,Uncaught ReferenceError: SetTime2 is not defined。什么是正确的语法?谢谢。