我有这样的HTML:

<html>
   <input type='button' name='button1' id='button1'>
   <input type='button' name='button2' id='button2'>
</html>


当用户单击button2时,我应该这样做,它应该删除button1元素并在其位置显示一条消息。 button2 click事件后,它看起来像这样。

<html>
   Button1 Removed
   <input type='button' name='button2' id='button2'>
</html>

最佳答案

如果使用jQuery,则可以执行以下操作:

$('#button2').click(function() {
  $('#button1').replaceWith('Button1 Removed')
});

关于javascript - 如何使用特定ID删除元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5829138/

10-10 00:29