element.remove()无法正常工作

时间:2015-07-18 12:55:51

标签: javascript google-chrome firefox dom

当我写这段代码时,它说

  

无法读取属性'remove'of null

var tileWrapper=document.querySelector(".tile[data-id='"+tileId+"']");
tileWrapper.remove();

但是以下工作正常

var tileWrapper=document.querySelector(".tile[data-id='"+tileId+"']");
setTimeout(function () {tileWrapper.remove();},200);

0 个答案:

没有答案