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

Html 按鈕button加超連結

http://blog.csdn.net/maxracer/article/details/6409437

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>