如何按类名找到<div>并删除javascript?</div>

时间:2015-01-04 05:13:24

标签: javascript jquery internet-explorer

我有<div>具有类名,我希望通过类名找到它并将其删除javascript我使用$(".popUpContainer").remove()但不能在IE9中使用。我怎么能在每个浏览器中都能运行呢?

<div class="popUpContainer">
</div>

2 个答案:

答案 0 :(得分:2)

jquery版本中的脚本错误小于1.10.1。尝试使用1.11.0版。它在IE中运行良好。检查小提琴。

$(function() {
    $('div.ikur').remove();
});

http://jsfiddle.net/8mfwF/3/

答案 1 :(得分:0)

在纯javascript中试试这个:

var elem = document.querySelector('.myClass');
var button = document.querySelector('button');
button.addEventListener('click', function() {
  var parent = elem.parentNode; // I did that for IE support
  parent.removeChild(elem);
});
<div class="myClass">Hello!</div>
<button>Remove</button>