从jQuery帖子里面返回

时间:2017-04-13 15:07:43

标签: jquery

我正在尝试从函数内部的jQuery.post中返回一个值,到目前为止返回的值是list

我如何解决?

undefined

它应该从函数function check_file(title) { var url = "http://www.example.com/wp-content/check_download.php"; var data = { title:title }; jQuery.post(url,data,function(response) { if(response==1) { //if file exists return 1; } else { //file doesn't exist keep checking until it does setTimeout(function () { check_file(title); }, 1000); } }); } 返回1但它返回check_file我该如何解决?

0 个答案:

没有答案