i use such code to access item
function f(id){
$("#"+id).val(); // with analogy $("#id item")
}
is it correct? is any other methods?
|
i use such code to access item
is it correct? is any other methods? |
|||
|
|
|
If you want to return the value of an element with specified id, then yes as that is what seems to be logical purpose of your function:
The functions should assume that an element with specified id exists and then it returns you the value of that element. This should work for
|
|||
|
|
|
You could use PureDom
Take that, jQuery! |
|||
|
|
|
From the jQuery API website:
What It's not clear to me when you say
is if you want to have ONLY one child item of the one that is identifiedby #id or if you need the item that is identified by item#id. Your code is perfect if you are passing a string like "hello" inside your code and you want to get the DOM element with ID of #hello. |
|||
|
|