使用属性结束用于删除元素

时间:2013-05-12 22:32:13

标签: jquery attributes selector

我一直在尝试实现attributeEndsWith选择器来删除多个元素,其中Ids以“_vb(”[id $ =“_ vb”]“)结尾。不幸的是,我下面的代码无效。有人可以帮助我纠正这个代码好吗?

<script type='text/javascript'>
$(document).ready(function(){

 var elem = document.getElementById('div[id$="_vb"]');
elem.parentNode.removeChild(elem);
return false;

});

1 个答案:

答案 0 :(得分:0)

document.getElementById无法正常工作,您需要jQuery函数($

$(document).ready(function(){
   $('div[id$="_vb"]').remove();
   return false;
});

http://api.jquery.com/remove/