单击更改div id属性

时间:2017-03-21 08:51:41

标签: javascript jquery css

我有两个div。当我点击一个按钮时,它会移动到另一个div

这看起来像是

我意识到这就是

enter image description here

 var counter = 0;
$('.click2').on('click', function () {
    counter++;
    if (counter > 10) {
        return false;
    }
    else {
        var elem = $(this).closest('.title');
        $('.title2').append($(elem).html()).show();

    }
});

但我有一个问题,我需要在移动时更改元素的ID

我知道这是在实现这个

 $(this).attr('id', '.title_left');

但我可以在左栏中有1-10个div,需要将其命名为.title_left1。接下来将是title_left2和++

我如何编码?

1 个答案:

答案 0 :(得分:0)

您只需将计数器追加到id属性:

$(this).attr('id', '.title_left' + counter);