码迷,mamicode.com
首页 > Web开发 > 详细

Html 按钮button加超链接

时间:2015-02-01 23:21:49      阅读:894      评论:0      收藏:0      [点我收藏+]

标签:


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>

Html 按钮button加超链接

标签:

原文地址:http://www.cnblogs.com/veygoux/p/4266492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!