JavaScript removeChild not working - Stack Overflow

I am using this JavaScript code to remove a couple elements from the page, but it's not working. W

I am using this JavaScript code to remove a couple elements from the page, but it's not working. When I inspect the code with Opera Dragonfly it says something like:

Uncaught exception: Error: WRONG_ARGUMENTS_ERR

and points to the file and function name.

The weird thing is that I use the exact same code in another function on the same page and it works without problem. The code is very small and simple:

var docBody = document.getElementById("body");
if(document.getElementById("marginDiv")){
  docBody.removeChild("marginDiv");
}

Both body and marginDiv exist on the page. My goal is to make the thumbnails disappear when one clicks the background.

I am using this JavaScript code to remove a couple elements from the page, but it's not working. When I inspect the code with Opera Dragonfly it says something like:

Uncaught exception: Error: WRONG_ARGUMENTS_ERR

and points to the file and function name.

The weird thing is that I use the exact same code in another function on the same page and it works without problem. The code is very small and simple:

var docBody = document.getElementById("body");
if(document.getElementById("marginDiv")){
  docBody.removeChild("marginDiv");
}

Both body and marginDiv exist on the page. My goal is to make the thumbnails disappear when one clicks the background.

Share Improve this question edited Jan 20, 2018 at 5:06 BSMP 4,8078 gold badges35 silver badges45 bronze badges asked May 3, 2012 at 14:28 Leandro ZhuzhiLeandro Zhuzhi 3141 gold badge7 silver badges18 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 9

You're trying to remove a string. A string is hardly an HTML element. You're also relying on marginDiv being a direct child of body, which may not be the case.

Instead, try this:

var remove = document.getElementById('marginDiv');
if( remove) remove.parentNode.removeChild(remove);

Try

docBody.removeChild(document.getElementById("marginDiv"));

removeChild needs a reference to a DOM element, not a string. Try this:

var docBody = document.getElementById("body");
var marginDiv = document.getElementById("marginDiv");

if(marginDiv)){
docBody.removeChild(marginDiv);
}
if(document.getElementById("marginDiv")){
  docBody.removeChild("marginDiv");
}

you have to check if specified element exist marginDiv exist, then removechild(...)

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743578675a4473905.html

相关推荐

  • JavaScript removeChild not working - Stack Overflow

    I am using this JavaScript code to remove a couple elements from the page, but it's not working. W

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信