在连续执行scrollExtend jQuery插件时修改参数值

时间:2011-11-24 16:08:03

标签: javascript jquery jquery-plugins

有问题的插件 - http://contextllc.com/node/51

您好,

如何在连续执行以下代码时修改参数的param值?

jQuery(document).ready(
    function() {
        jQuery('.scroll_container').scrollExtend(
            {   
                'target': 'div#scroll_items',           
                'url': 'get_content.php?param=__THIS_CHANGES__', 
                'newElementClass': 'list_item more_content'

            }
        );
    }
);

谢谢!

1 个答案:

答案 0 :(得分:0)

url参数实际上可以使用函数(或函数名称 - 没有括号)以及字符串。所以,试试:

jQuery(document).ready(
    function() {
        jQuery('.scroll_container').scrollExtend(
            {   
                'target': 'div#scroll_items',           
                'url': function() {
                      //code to get the URL goes here
                },
                'newElementClass': 'list_item more_content'

            }
        );
    }
);