variable = variable + 2的含义是什么?

时间:2017-08-16 09:49:14

标签: variables count

commentCount = commentCount + 2是什么意思;和commentNewCount:commentCount

//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>

2 个答案:

答案 0 :(得分:0)

  1. commentCount = commentCount + 2;获取commentCount的值,为其添加2,并将结果存储回commentCount

  2. {
        commentNewCount: commentCount
    }
    

    ...称为对象初始值设定项(或对象字面值)。这个创建一个名为commentNewCount的属性的对象,并为其指定当前值commentCount

    在引用的代码中,然后将其传递给jQuery的load函数以发送到服务器。

答案 1 :(得分:0)

在大多数编程语言中,=称为赋值运算符。它与数学中的等号不同。这意味着它右侧的东西存储在左侧的变量中。因此,首先commentCount将数字2存储为var commentCount = 2,然后commentCount + 2计算为4,并保存到commentCount

{commentNewCount: commentCount}是一个JavaScript对象文字。你可以在这里阅读:https://www.w3schools.com/js/js_objects.asp