In jQuery, what is the equivalent to document.getElementById("selectlist").value ?
I am trying to get the value of a select list item.
Thanks.
|
In jQuery, what is the equivalent to I am trying to get the value of a select list item. Thanks. |
|||||||||||||||||||||
|
|
|||||||
|
|
"Equivalent" is the word here While...
...is equivalent to...
...it's worth noting that...
...although 'equivalent' is not the same as...
...as the former returns a jQuery object, not a DOM object. To get the DOM object(s) from the jQuery one, use the following:
|
|||||||||||||||||||
|
|
Chaos is spot on, though for these sorts of questions you should check out the Jquery Documentation online - it really is quite comprehensive. The feature you are after is called 'jquery selectors' Generally you do |
||||
|
|
|
It can be done by three different ways,though all them are nearly the same Javascript way
Jquery way
you can test with an working example here |
|||
|
|
|
In some cases of which I can't remember why but |
|||||
|
|
For those wondering if jQuery id selectors are slower than document.getElementById, the answer is yes, but not because of the preconception that it searches through the entire DOM looking for an element. jQuery does actually use the native method. It's actually because jQuery uses a regular expression first to separate out strings in the selector to check by, and of course running the constructor:
Whereas using a DOM element as an argument returns immediately with 'this'. So this:
Will always be faster than this:
|
|||
|
|