使用jquery禁用我的滑块窗格中的所有链接?

时间:2012-08-14 14:02:09

标签: jquery

如何使用jquery禁用滑块窗格中的所有链接?

基本上我父div中的每一个<a href...

3 个答案:

答案 0 :(得分:1)

$('.classname-of-parent-div').on('click', 'a', function (e) {
    e.preventDefault();
});

答案 1 :(得分:1)

//You could alse use $('a') if you want to disable ALL links
$('.sliding-pane a').click(function(e) {
    e.preventDefault();
});

答案 2 :(得分:1)

试试吧。

$(document).ready(function() {
    $("#slider").on('click', 'a', function(event) {
        event.preventDefault();
        alert('no navigation');
    });
});​

Live Demo

有关更多信息jQuery PreventDefault here