欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

a标签不跳转的三种方法

程序员文章站 2022-05-18 14:34:36
...

a标签不跳转的三种方法

1.onclick事件中返回false

<a href="http://www.baidu.com" onclick="return false">不能跳转到百度</a>

2.用href="javascript:void(0)"这种伪协议

<a href="javascript:void(0)">不能跳转</a>

3.使用(#)

<a href="#" class="top" onclick="del()">删除</a>//当页面内容较多的时候,会有一种跳转对的感觉
相关标签: html javascript