有问题的插件 - 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'
}
);
}
);
谢谢!
答案 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'
}
);
}
);