jQuery - Check if DOM element already exists

前端 未结 10 1584
萌比男神i
萌比男神i 2020-12-04 21:01

I am trying to add some form elements dynamically via Ajax with jQuery. I want to make sure that I don\'t create the same element twice, so I only want to add it if it hasn\

10条回答
  •  [愿得一人]
    2020-12-04 21:14

    (()=> {
        var elem = document.querySelector('.elem');  
        (
            (elem) ? 
            console.log(elem+' was found.') :
            console.log('not found')
        )
    })();
    

    If it exists, it spits out the specified element as a DOM object. With JQuery $('.elem') it only tells you that it's an object if found but not which.

提交回复
热议问题