如何使用jQuery启用或禁用锚点?
为了防止锚跟随指定的位置href,我建议使用preventDefault():
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(); }); });