简体   繁体   中英

How to select element which doesn't has Id attribute?

I have two textarea and one of them has id attribute and other one doesn't has. Something like this:

<textarea> </textarea>
<textarea id = 'idname'> </textarea>

Now I need to select first textarea, How can I do that?

You could combine the :not() pseudo-class and the [id] attribute selector in order to negate elements with an id attribute:

textarea:not([id]) {}
document.querySelectorAll('textarea:not([id])');
$('textarea:not([id])');

Basic Example:

 textarea:not([id]) { width: 100%; } 
 <textarea></textarea> <textarea id='idname'></textarea> 

As you also don't mind a jQuery answer:

$('textarea:not([id])');

or

$('textarea').not('[id]');

Update:

For a specific name:

$('textarea[name="somename"]');

Try to use the following in your case:

$('textarea:not(#idname)')[0]

Selector depends on exact requirements and mark-up

JQuery solution :

Using :not() Selector :

$('textarea:not(#idname)')

Hope this helps.


  $('textarea:not(#idname)').text('selected'); 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <textarea> </textarea> <textarea id='idname'> </textarea> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM