我有如下函数,放在jsp页面,好好的但是放到公共js文件页面有一大片就变灰色死掉是javascript轮询必须在页面文件,而不能在js文件吗?function doPolling(urlbase, uuid) {//console.log("notifyUUID is: " + uuid);var times = 0;var flag = 0;var interval = setInterval(function () { times++; if (times > 5 || flag == 1) { clearInterval(interval); if(times>5){ //top.$.jBox.tip("配置信息远程接收失败!"); //console.log("配置信息远程接收失败!"); } return; } $.ajax({ url: urlbase + '/delivery/poll-status', type: 'post', data: {uuid: uuid}, success: function (data) { console.log("success :" + data); if("" != data) { //top.$.jBox.tip(data); // console.log(data); flag = 1; } }, error: function (data) { //console.log("error: " + data); flag = 1; } }) }, 2000);}
添加回答
举报
0/150
提交
取消