Rumah > Artikel > hujung hadapan web > css怎么给按钮加上超链接
css给按钮加上超链接的方法:1、使用“window.location.href('url地址')”方法让本页转向新的页面;2、使用“window.open('url')”方法打开一个新的页面。
本教程操作环境:windows7系统、HTML5&&CSS3版本,Dell G3电脑。
相关推荐:《css视频教程》
html/css给按钮加上超链接
可以使用HTML onclick 事件属性
1、如果让本页转向新的页面则用:
<input type="button" onclick="window.location.href('url地址')">
b6c95a2658e13904a9546496491fb139这是一个按钮65281c5ac262bf6d81768915a4a77ac0
2、如果需要打开一个新的页面进行转向,则用:
<input type="button" onclick="window.open('url')">
3、如果需要返回到上次打开的页面,则用:
<input type="button" onclick="window.history.back()">
Atas ialah kandungan terperinci css怎么给按钮加上超链接. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!