问答详情
源自:7-1 jQuery自定义事件之trigger事件

first.text(bottonName)这句是什么意思

first.text(bottonName)这句是什么意思

提问者:objectivezhou 2016-05-24 22:07

个回答

  • hey自然
    2016-06-17 18:02:12

    注意这里自定义函数 : 

    function update(first,last,buttonName) {

            first.text(buttonName);

            var n = parseInt(last.text(), 10);

            last.text(n + 1);

        }

    然后这里给我们的自定义函数传参: update($("span:first"),$("span:last"),buttonName);

    so: first.text(buttonName) = $("span:first").text(buttonName);

    又: buttonName = buttonName || first;

    这里我们并没有给buttonName 这个参数传值,所以 buttonName 取值为 first;

    So:  first.text(buttonName) = $("span:first").text("first");

  • objectivezhou
    2016-05-26 14:12:27

    这句是获取第一个<span>元素的内容

  • 猥琐控灬嫌疑人
    2016-05-25 14:07:07

    first变量   .text()文本内容  把bottonName   的值付给first