美文网首页webAPI
阻止a标签跳转的两种方式

阻止a标签跳转的两种方式

作者: 椋椋夜色 | 来源:发表于2019-05-07 22:59 被阅读0次

<!DOCTYPE html>
<html lang="zh-CN">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> 阻止a标签跳转的两种方式 </title>

    阻止a标签跳转的两种方法:
        1.给它再加一个点击事件,在点击事件里return false
        2.改href把href改成 javascript:void(0) 简写形式 javascript:

</head>

<body>

<a href="https://www.baidu.com" id="a">点击跳转</a>
<a href="javascript:void(0)">阻止a标签跳转方式2</a>
<a href="javascript:">简版阻止a标签跳转方式2</a>

<script>
    // 阻止a标签跳转方式1
    document.getElementById('a').onclick = function () {
        // 告诉浏览器:这次点击不要再跳转了
        return false;
    }
</script>

</body>

</html>

相关文章

网友评论

    本文标题:阻止a标签跳转的两种方式

    本文链接:https://www.haomeiwen.com/subject/idwuoqtx.html