javascript - .remove is not a function - Stack Overflow

This question may be duplicate of any. But, after lot of try I couldn't find the proper solution f

This question may be duplicate of any. But, after lot of try I couldn't find the proper solution for this.

This is my code

@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
<script>
    $(document).ready(function () {
        var els = document.querySelectorAll('body > *');
        els[els.length - 1].remove(); //getting error here            
    })
</script>

I don't know why my application is showing error in browser console like

TypeError: els[els.length - 1].remove() is not a function

When i can run same function in browser console window and it works. but, when i place my code in the page it shows me error like above. I have also tried to call .removeNode(boo) method but, it was also not working. Actually when i try to write ele[].remove() in the code the intellisence doesn't suggest me that function.

This question may be duplicate of any. But, after lot of try I couldn't find the proper solution for this.

This is my code

@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
<script>
    $(document).ready(function () {
        var els = document.querySelectorAll('body > *');
        els[els.length - 1].remove(); //getting error here            
    })
</script>

I don't know why my application is showing error in browser console like

TypeError: els[els.length - 1].remove() is not a function

When i can run same function in browser console window and it works. but, when i place my code in the page it shows me error like above. I have also tried to call .removeNode(boo) method but, it was also not working. Actually when i try to write ele[].remove() in the code the intellisence doesn't suggest me that function.

Share Improve this question asked Sep 21, 2014 at 3:34 ShellShell 6,84911 gold badges43 silver badges74 bronze badges 2
  • What's the value of els at the point of failure? – isherwood Commented Sep 21, 2014 at 3:36
  • Its a div at els[els.length - 1] element. – Shell Commented Sep 21, 2014 at 3:37
Add a ment  | 

1 Answer 1

Reset to default 6

DOMNodes don't have a remove() method. Use this:

$(document).ready(function () {
    var els = document.querySelectorAll('body > *');
    $(els[els.length - 1]).remove(); 
});

or even better, this:

$(document).ready(function () {
    $('body > *').last().remove();
});

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

相关推荐

  • javascript - .remove is not a function - Stack Overflow

    This question may be duplicate of any. But, after lot of try I couldn't find the proper solution f

    23小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

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

关注微信