我有一个带有链接的按钮,但它在同一浏览器中使用错误的网址(例如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>
答案 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