如何在按钮上打开https网站点击javascript?

时间:2015-10-29 04:13:52

标签: javascript jquery

我正在使用的代码是

window.location.href = "https://www.google.com/"; 

但是我停留在同一页面上,没有转到google.com。我能够通过http页面来完成这项工作。

window.location.href = "http://www.tutorialspoint.com/mongodb/mongodb_insert_document.htm"; 

这是相同的完整代码

<form name="form1" onsubmit="submis()" action="/post.php" method="POST"

和函数submis()

function submis()
{
     window.location.href = "https://www.google.com/";    
}

和post.php

if (!empty($_POST))
{
//saving the contents of the post request to a file.
}

2 个答案:

答案 0 :(得分:0)

<script>
        function goto(){
            window.location.href = "https://www.google.com/";
        }
    </script>

在html代码<a href="#" onclick="goto()">go to google</a>

它有效

答案 1 :(得分:0)

我能够通过将代码更改为

来完成这项工作
window.top.location.href="https://www.google.com"