commentCount = commentCount + 2是什麼意思;和commentNewCount:commentCountvariable = variable + 2是什麼意思
//Jquery start at here
<script>
$(document).ready(function(){
var commentCount = 2;
$("button").click(function(){
commentCount = commentCount + 2;
$("#comments").load("load_comments.php", {
commentNewCount: commentCount
});
});
});
//End
</script>
不是我的失望,但你應該閱讀一個基本的JavaScript教程。這不是從頭開始學習JS的好方法。 –