码迷,mamicode.com
首页 > 其他好文 > 详细

button按钮加超链接

时间:2014-11-05 21:09:32      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:io   使用   on   html   ef   htm   tt   window   type   

1.如果让本页转向新的页面则用:
<input type=button onclick="window.location.href(‘连接‘)">

2.如果需要打开一个新的页面进行转向,则用:
<input type=button onclick="window.open(‘连接‘)">


3.如果需要返回到上次打开的页面,则用:
<input type=button onclick="window.history.back()">

由于浏览器内核不一样

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>

button按钮加超链接

标签:io   使用   on   html   ef   htm   tt   window   type   

原文地址:http://www.cnblogs.com/bobo-x/p/4077237.html

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