ID에서 얻은 값을 숫자로 바꾸고 여기에 1을 더한 다음 dosomething()
사용할 함수에 새 값을 전달하고 싶습니다 . 내가 이것을 시도하고 값이 1이면 2가 아닌 11을 반환합니다.
$('.load_more').live("click",function() { // When user clicks
var newcurrentpageTemp = $(this).attr("id") + 1;// Get id from the hyperlink
alert(parseInt(newcurrentpageTemp));
dosomething();
});
+ 1
사용하는 대신++
더 간결하게하기 위해 첫 번째 줄 끝에서 할 수도 있습니다.