window.location.href 在浏览器里无法跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.location.href 在浏览器里无法跳转相关的知识,希望对你有一定的参考价值。
<!--EndFragment-->
</body>
</html>
<script language="javascript">
function c(e)Form.x.value += e;
</script><form action="" method="post" name="Form" id="Form">
<input type="text" name="x" ><select name="Style" id="Style" onchange="javascript:c(this.value)" ><option selected="selected" value="2">1</option></select>
<script type="text/javascript">
function buttonClick()
windows.location.href='1.asp' + escape(document.getElementById('x').value);
</script>
<input type="button" id="button1" value="查" onclick="buttonClick()" >
关于 Safari 浏览器不支持 location [ window.location.href window.open()] 跳转问题的解决方案
最近在做项目时,碰到 safari 浏览器不支持location跳转问题,针对此问题,可以通过 js 模拟点击时间来解决,代码如下:
1 <!DOCTYPE HTML> 2 <html lang="en-US"> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 </head> 7 <body> 8 <a id=‘link‘ href="#"></a> 9 <script type="text/javascript"> 10 var obj = document.getElementById(‘link‘); 11 obj.href = "http://www.baidu.com"; 12 obj.click(); 13 </script> 14 </body> 15 </html>
以上是关于window.location.href 在浏览器里无法跳转的主要内容,如果未能解决你的问题,请参考以下文章
window.location.href 在浏览器里无法跳转
javascript window.location.href下载问题
关于 Safari 浏览器不支持 location [ window.location.href window.open()] 跳转问题的解决方案