下面的代码在 Firefox 和 chrome 上完美运行,但是 ie 出现了奇怪的问题。我自己测试了很多次,即 6、7、8 和 9 似乎对我有用。当客户端请求页面和函数时面临的问题有时调用有时不调用。
Close:function() {
$.ajax({
url: 'URL',
cache: false,
success: function (data) {
eval( data ) ;
if ( json_data.status ) {
CountDown.close();
}
else {
setTimeout(CountDown.Close, 1000);
}
},
error: function() { setTimeout(CountDown.Close, 1000); }
});
},