Html 按钮button加超链接
生活随笔
收集整理的這篇文章主要介紹了
Html 按钮button加超链接
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
http://blog.csdn.net/maxracer/article/details/6409437
1.頁面轉向新的頁面:
<input type="button" οnclick="window.location.href('連接')">
2.需要打開一個新的頁面進行轉向:
<input type="button" οnclick="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>
總結
以上是生活随笔為你收集整理的Html 按钮button加超链接的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Oracle plsqlI 练习 传值
- 下一篇: struts2显示列表序号的办法