使用Jquery将整个html标记替换为另一个标记?

时间:2009-11-26 10:57:19

标签: jquery html

我有:

<input id="ONE" type="..." ...>

我想将其替换为:

<select id="TWO">
  <option value="1">1</option>
  <option value="2">2</option>
  <option value="3">3</option>
<select>

我该怎么做?

2 个答案:

答案 0 :(得分:5)

使用

$("#ONE").replaceAll("#TWO") 

如描述here。如果要在JS中指定替换内容,可以使用replaceWith(内容)。

答案 1 :(得分:1)

也许使用replaceWith()