按钮单击无法与链接一起使用

时间:2018-08-28 05:20:53

标签: html

我有一个带有链接的按钮,但它在同一浏览器中使用错误的网址(例如https://localhost:44374/www.google.com.au

)继续打开
 <button class="IPbutton" id="" type="button" onclick="location.href='www.google.com.au';"> www.google.com.au </button>

5 个答案:

答案 0 :(得分:1)

确保链接完全符合协议等条件

<button class="IPbutton" id="" type="button" onclick="location.href='https://www.google.com.au';"> www.google.com.au </button>

答案 1 :(得分:1)

尝试这样的事情:

使用window.location.href

<button class="IPbutton" id="" type="button" onclick="window.location.href='https://www.google.com.au';"> www.google.com.au </button>

答案 2 :(得分:1)

尝试以下操作:<button class="IPbutton" id="" type="button" onclick="location.href='https://www.google.com.au/';"> www.google.com.au </button>

答案 3 :(得分:1)

您可以使用此 <a href="https://stackoverflow.com/questions/tagged/html" target="_blank"><button class="IPbutton" id="" type="button" > button1</button> </a> 但是如果你想要onclick <button class="IPbutton" id="" type="button" onclick="window.location='www.google.com.au'"> button2 </button>

答案 4 :(得分:0)

我认为您应该将location.href更改为window.location