2017-08-16 72 views
0

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> 
+6

不是我的失望,但你應該閱讀一個基本的JavaScript教程。這不是從頭開始學習JS的好方法。 –

回答

0
  1. commentCount = commentCount + 2;需要的commentCount價值,增加了2至它,並且將結果存儲回commentCount

  2. { 
        commentNewCount: commentCount 
    } 
    

    ...被稱爲對象初始化(或對象文字)。這一個創建一個名爲commentNewCount的屬性的對象,併爲其指定當前值commentCount

    在引用的代碼中,它將該函數傳遞給jQuery的load函數以發送到服務器。

0

在大多數編程語言中,=被稱爲賦值運算符。它與數學中的等號不一樣。這意味着它右側的內容存儲在左側的變量中。所以,第一個commentCountvar commentCount = 2存儲數字2,然後commentCount + 2計算爲4,並保存到commentCount

{commentNewCount: commentCount}是一個JavaScript對象字面量。你可以在這裏閱讀:https://www.w3schools.com/js/js_objects.asp

+0

非常感謝您的答案 – erwin

相關問題