我有一个 iframe 应用程序。我收到一条警报,上面写着-error in chrome for top.location.href
。
jQuery.ajax({
type : 'get',
url : 'check_if_fb_data_set.php',
success : function(response){
if(jQuery.trim(response) == 'success') {
top.location.href = "http://mysite.com";
} else {
setTimeout(CheckIfFbDataSet,2000);
}
}, error : function (jqXHR, textStatus, errorThrown){
console.log(errorThrown);
}
});
我试过了
- location.reload()
- window.location.href = 窗口.location.href;
- document.write('元刷新............');
- document.write('<script> window.location ........< /script>');
第三个没有用,但其他四个都给了我同样的错误。我没有其他方法可以测试。