我是一个 jQuery 新手。我有一个核心 js 文件,我的用户看不到它。我里面有以下函数,它发出一个服务器请求 -
function checkMsgs(t1,t2) {
// poll the url
// return the results
$.get("http://www.mySite.com/web/test.php", {
"t1" : t1,
"t2" : t2
}, function(data) {
return data;
});
}
现在,我想调用这个函数,而不阻塞线程,即异步。从该方法返回后如何进行函数调用,但不阻塞任何内容?