<form name='form1'> <select name='sel1'></select> </form> <script> document.form1.sel1 ... //access element by it's name attribute, is this standard? </script>
|
|
|
||||
|
|
|
No, it is not specified in DOM Level 2 HTML that an HTMLDocument will gain named forms as direct properties, nor that HTMLFormElement will gain named elements as direct properties. However the behaviour does stretch back to the very earliest implementation of JavaScript (in Netscape 2) and has been copied by every browser since, so it's one of those “DOM Level 0” features that though not formally recognised by any standards body is certainly a de facto standard. I still wouldn't recommend using it, because future browsers may introduce new properties on HTMLDocument and HTMLFormElement (as browsers have regularly done in the past especially on HTMLDocument) whose names may clash with your Better still is to put |
||
|
|
|
|
The right syntax is :
or
|
||
|
|
|
Why not do
Thats why I always use |
||||||||||
|
