使用window.location时在Firefox中的不兼容 博客分类: jquery... window.location.hreffirefoxreload
程序员文章站
2024-03-15 08:56:29
...
使用以下代码,刷新页面时
在firefox中会出现重新发送的对话框
修改如下
window.location.reload();
windoe.location.href("www.baidu.com");
在firefox中会出现重新发送的对话框
修改如下
window.location.href = window.location.href; window.location.reload;
windoe.location.href="www.baidu.com"