0

这是我正在使用的代码: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 被禁用它仍然有效。

4

4 回答 4

2

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

$('a').click(function(event){ // <-- notice 'event' passed to handler
event.preventDefault();
于 2013-08-29T19:19:25.923 回答
0

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

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

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

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

      // the rest of your code
    });
});
于 2013-08-29T19:32:58.630 回答
0

应该

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

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

于 2013-08-29T19:19:29.407 回答
0

没有event 传入回调。

尝试

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

            event.preventDefault();
    }
于 2013-08-29T19:19:50.583 回答