window.location.href("url") 无法在chrome和Firefoxz中使用
2020-12-13 04:14
标签:style http color 使用 strong cti 今天在js代码中加了一句window.location.href(‘url’)希望实现页面的跳转,IE中可以正常使用,但是Firefox却提示window.location is not a function。 google以后将代码改为window.location=‘url‘ 程序正常执行。 简言之: 下面的格式可以在IE中正常执行,但是不能在Firefox和Chrome中执行: 下面的格式可以以上三个浏览器中全部正常执行: window.location.href("url") 无法在chrome和Firefoxz中使用,搜素材,soscw.com window.location.href("url") 无法在chrome和Firefoxz中使用 标签:style http color 使用 strong cti 原文地址:http://www.cnblogs.com/wangyuanliang/p/3837732.html window.location.href("http://stackoverflow.com");
window.location.href = "http://stackoverflow.com";
此外,在搜索中发现,window.location.href=‘Url‘在Firefox中也会遇到无法正常执行的原因,推荐的方法是window.location=‘Url‘.因为,有些浏览器中window.location.href是只读属性。
文章标题:window.location.href("url") 无法在chrome和Firefoxz中使用
文章链接:http://soscw.com/essay/29218.html