本篇文章主要的為大家講述了關於html button按鈕標籤的超連結新增的方法,有實例還有解釋。接下來就讓我們一起來看看這篇關於html 按鈕button標籤加上超連結的文章吧
##首先,我們先看看html button標籤是否有超連結:
來看個實例<input type="button" value="注册" onclick="window.location.href='http://www.php.cn'">
現在讓我們來看看button標籤新增超連結的解釋:
#如果讓本頁轉向新的頁面則用: 如果需要開啟新的頁面進行轉向,則使用: 注意:上面的按鈕加超連結只針對IE 好用。火狐和Safari如果想同時好用可以用到以下方法:<a href="链接"><input type=button onclick="window.location.href('连接')"> </a>
<a href="链接"> <input type=button onclick="window.location.href('超连接地址')"> </a>
HTML 按鈕button標籤加超連結的幾種使用方法:
1.頁面轉向新的頁面:
<input type="button" onclick="window.location.href('连接')">
2.需要開啟新的頁面進行轉向:
<input type="button" onclick="window.open('连接')">
<input type="button" name="test" value="test" onClick="location.href='a.html'"/>
<a href="b.html"><input type="button" name="test" value="test"/></a>
以上是HTML button標籤是否有超連結?這有button標籤設定超連結的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!