无论在网址上传递什么,window.location.hash都不会在iPhone Safari上返回任何内容,但在其他设备和PC浏览器上运行良好。
var testhash =window.location.hash;
alert(testhash);
如果我重定向到
window.location.href = "example.com/somepage.php?param=1#googletranlsate"
在iphone上我被重定向到
window.location.href = "example.com/somepage.php?param=1"
我不知道iphone或safari特有的问题吗?
由于