最佳答案
我想将从 id 中获得的值转换成一个数字,然后向其中添加一个,然后将新值传递给要使用的 dosomething()
函数。当我尝试这个方法时,结果是1,我得到的是11,而不是2。
$('.load_more').live("click",function() { // When user clicks
var newcurrentpageTemp = $(this).attr("id") + 1;// Get id from the hyperlink
alert(parseInt(newcurrentpageTemp));
dosomething();
});