2

这是我的文本输入框

<input class="tb" id="tb43[0]" type="text" size="30" maxlength="200" />

使用 jQuery 进行克隆时,我希望新克隆框的 id 为"tb43[1]"

$clone.find(".tb").attr("id").replace(/\d+/, function (val) { return parseInt(val) + 1; });

这只会增加第一个数字,但我怎样才能增加方括号中的数字?

谢谢

4

1 回答 1

7
  1. 您可以使用.attr("id", function() {})更改 ID。您当前没有更改 ID。
  2. 您可以更改正则表达式以仅在方括号中匹配。
  3. 您可以使用+代替parseInt(后者有一些警告)。

例如

$clone.find(".tb").attr("id", function(i, id) {
  return id.replace(/\[(\d+)\]/, function(match, number) {
    // `number` refers to the first group (denoted with ())
    return "[" + (+number + 1) + "]";
  })
});
于 2012-08-16T09:33:23.460 回答