0

循环使用 var westring 给了我最后一个 li。有没有办法将其附加或附加到帖子 URL?

  $(document).ready(function() {

    var westring = '0';

    $('#infinite_topic_scroll').scrollLoad({ 
    url : '/challenges_side.php?f=hh&start_res='+westring+'&v=y', 
    getData : function() {  },
    start : function() { $('<div class="loading"><img src="/images/ajax-loader.gif"/></div>').appendTo(this); },
    ScrollAfterHeight : 95,
    onload : function( data ) {
    $(this).append( data );
    $('.loading').remove();     
    },
    continueWhile : function( resp ) {

    var westring = ($(this).children('li').length);

    // alert(westring);

    if( $(this).children('li').length >= 100 ) { return false; }
    return true;
        }
        }); 
    });
4

2 回答 2

1

去掉 continueWhile 函数中的 var。您已经将 var 放在上述范围内。另外,我会将它转换为字符串。它应该只是

westring = $(this).children('li').length.toString()
于 2012-12-21T22:32:06.037 回答
1

我在您专门使用的插件上找不到太多内容,但我认为您正在寻找的是...

getData : function() {  }

尝试这样的事情......

[...]
url : '/challenges_side.php', 
getData : function() 
{  
    return {
        "f" : "hh",
        "v" : "y",
        "start_res" : $(this /* or element selector */).children('li').length.toString()
    };
},
[...]

我可能是错的,但值得一试

于 2012-12-21T22:42:45.190 回答