在一定数量的按钮点击后添加输入字段属性

时间:2013-12-04 00:43:25

标签: javascript jquery

我正在尝试在发生一定数量的点击时将输入字段添加到输入字段2。我添加了一个名为add_count的变量,每次单击该按钮时都会迭代+ 1。但是在运行jquery函数时。它根本没有执行。如果点击次数大于2,如何在输入字段中添加属性?

<script>
$(document).ready(function () {
var click_count = 0;
    $('#btnAdd').click(function () {
    console.log(click_count++);
        if (add_count => 2){
        newSection.children(':first').children(':first').attr('id', 'person_id_' + newNum).attr('name', 'person_id_' + newNum).attr('class', 'newIncrement');
        }
        newSection.children(':first').children(':first').attr('id', 'person_id_' + newNum).attr('name', 'person_id_' + newNum);
    });

});
</script>

1 个答案:

答案 0 :(得分:2)

你弄乱了你的操作员,改变了

if (add_count => 2){...

if (add_count >= 2){...

并注意add_countclick_count

不同