E防止默认不起作用



这是我正在使用的代码:http://jsfiddle.net/qKyNL/12/

$('a').click(function(){
    event.preventDefault();
    var number = $(this).attr('href');
    alert(number);
    // AJAX
    $.ajax({
        url: "/ajax_json_echo/",
        type: "GET",
        dataType: "json",
        timeout: 5000,
        beforeSend: function () {
            // Fadeout the existing content
            $('#content').fadeTo(500, 0.5);
        },
        success: function (data, textStatus) {
            // TO DO: Load in new content
            // Scroll to top
            $('html, body').animate({
                scrollTop: '0px'
            }, 300);
            // TO DO: Change URL
            // TO DO: Set number as active class
        },
        error: function (x, t, m) {
            if (t === "timeout") {
                alert("Request timeout");
            } else {
                alert('Request error');
            }
        },
        complete: function () {
            // Fade in content
            $('#content').fadeTo(500, 1);
        }
    });    
});

我试图使用Jquery创建一个可降解的分页,但问题是"e prevent default"似乎没有触发,而是仍然遵循链接。有人能告诉我如何让这个链接可以降解吗?这样,如果Jquery被禁用,它仍然可以工作。

您没有传入事件对象。试试这个:

$('a').click(function(event){ // <-- notice 'event' passed to handler
event.preventDefault();

应该是

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

在第一行。请注意,event是作为参数传递给匿名函数的。

回调中没有传递event

尝试

        $('a').click(function(event){
------------------------------^
            event.preventDefault();
    }

正如其他答案所说,您需要将事件变量传递给回调

$('a').click(function(event) {
  event.preventDefault();
});

您还需要将所有代码封装到就绪函数jQuery中,以便只有在jQuery准备好处理事件侦听器时才分配事件侦听器。

$(document).ready(function() {
    $('a').click(function(event) {
      event.preventDefault();
      // the rest of your code
    });
});

相关内容

  • 没有找到相关文章

最新更新