Javascript执行“else”仅当 location.reload 存在时?
当且仅当 $.post() 函数没有返回 html (错误)时,我才尝试刷新页面。当我没有 location.reload(true); 时,代码可以正常工作。当我确实存在它时,页面速度似乎由加载速度决定它是否要验证......
我对此进行了测试,发现代码有效在远程服务器上运行时,可以达到 80% 的成功率,但使用 MAMP 在本地运行时,只有 50% 的时间有效。为什么,有办法解决这个问题吗?
I'm trying to have the page refresh if and only if there is no html (errors) returned by the $.post() function. The code works just fine when I don't have location.reload(true); present. When I do have it present, the page speed seems to have load speed decide if it's going to validate or not...
I tested this, and found that the code worked 80% of the time when run on a remote server, but it only worked 50% of the time when run locally using MAMP. Why, and is there a way to fix this?
Code & everything: http://jsfiddle.net/sman591/ZHays/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么你要
使用
var messagehtml =$('.window #message').html()
why you are having
intead of
var messagehtml =$('.window #message').html()