美文网首页
阻止a标签跳转几种方法

阻止a标签跳转几种方法

作者: timeGap | 来源:发表于2018-06-02 16:27 被阅读0次

       一、在html中

      1.<a href="javascript :;" />

      2.<a href="###" />

    二、在Jquery中

        1. $('a').click(function (e) {

          e.preventDefault();

        })

        2. $('a').click(function () {

    return false;

    })

    相关文章

      网友评论

          本文标题:阻止a标签跳转几种方法

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