button 添加超链接

button 标签 添加超链接方法:

1. 

//适用于ie内核的浏览器
 <input type='button' value='跳转' onclick="window.location.href('www.example.com')">

2.

//适用于火狐浏览器
 <a href='www.example.com'>
     <input type='button' value='跳转' >
 </a>

3. //兼容ie与火狐的方法

<a href='www.example.com'>
            <input type='button' value='跳转' onclick='window.location.href('www.example.com')''>
   </a>

猜你喜欢

转载自xiaoyu-91.iteye.com/blog/2276972