1. 程式人生 > >【轉】Html 按鈕button加超連結

【轉】Html 按鈕button加超連結

1.頁面轉向新的頁面:
<input type="button" onclick="window.location.href('連線')">
2.需要開啟一個新的頁面進行轉向:
<input type="button" onclick="window.open('連線')">

由於瀏覽器核心不一樣

IE中使用:
<input type="button" name="test" value="test" onClick="location.href='a.html'"/>
firefox中使用:
<a href="b.html"><input type="button" name="test" value="test"/></a>