1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Html 按钮button加超链接

Html 按钮button加超链接

时间:2021-12-25 08:32:18

相关推荐

Html 按钮button加超链接

/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>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。