关于ajax返回值得问题
$(function(){
setInterval(actionAjax,10000);//每5分钟调用一次ajax
//actionAjax();
});
function actionAjax(){
$.ajax({
type:"GET",
url:"index.php?m=Company&a=isRead",
async:false,
dataType:"text",
//error:function(){
//alert(XMLHttpRequest.readyState);
//},
success:function(data){
if(data){
clearInterval();
flash_title();
}else{
alert(2);
}
}
});
}
var step=0
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='【你有新的推送简历】'}
if (step==2) {document.title='【 】'}
setTimeout("flash_title()",380);
setInterval(actionAjax,10000);//每5分钟调用一次ajax
//actionAjax();
});
function actionAjax(){
$.ajax({
type:"GET",
url:"index.php?m=Company&a=isRead",
async:false,
dataType:"text",
//error:function(){
//alert(XMLHttpRequest.readyState);
//},
success:function(data){
if(data){
clearInterval();
flash_title();
}else{
alert(2);
}
}
});
}
var step=0
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='【你有新的推送简历】'}
if (step==2) {document.title='【 】'}
setTimeout("flash_title()",380);
}
最后的效果标题没有闪烁,感觉是setTimeout("flash_title()",380);没有执行,大神些怎么看
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是哪里的原因 是因为ajax循环访问的时间太短了
太长不看~ 不过改成
setTimeout(flash_title,380);试试,你的写法不标准