小编典典

如何使用jQuery启用或禁用锚点?

html

如何使用jQuery启用或禁用锚点?


阅读 290

收藏
2020-05-10

共1个答案

小编典典

为了防止锚跟随指定的位置href,我建议使用preventDefault()

// jQuery 1.7+
$(function () {
    $('a.something').on("click", function (e) {
        e.preventDefault();
    });
});

// jQuery < 1.7
$(function () {
    $('a.something').click(function (e) {
        e.preventDefault();
    });

    // or

    $('a.something').bind("click", function (e) {
        e.preventDefault();
    });
});
2020-05-10