在HTML中给表单控件添加超链接

众所周知,常见的表单控件类型有text、password、button、submit、checkbox(复选框)、radio(单选框)。经常在做登录界面注册时会有一个跳转页面,当然是按键后有跳转,这里以按键button为例,可以添加点击事件,也可以加超链接。
方式一:超链接

<a href="链接" >
    <input type="button"   value="添加按钮上文本 "/>
</a>

方式二:点击事件onclick跳转

<input type="button" onclick="link"/>

1、若直接在本页跳转到新的页面,则用:

<input type="button"  onclick="window.location.href('链接')">

2、如果需要打开一个新的页面进行跳转,则用:

<input type="button"  onclick="window.open('链接')">