vote up 1 vote down star

I have a form element that I want to address via javascript, but it doesn't like the syntax.

<form name="mycache">
  <input type="hidden" name="cache[m][2]">

I want to be able to say:

document.mycache.cache[m][2]

but obviously I need to indicate that cache[m][2] is the whole name, and not an array reference to cache. Can it be done?

flag

4 Answers

vote up 2 vote down check

UPDATE: Actually, I was wrong, you can use [ or ] characters as part of a form elements id and/or name attribute.

Here's some code that proves it:

<html>
<body>

<form id="form1">

<input type='test' id='field[m][2]' name='field[m][2]' value='Chris'/>

<input type='button' value='Test' onclick='showtest();'/>

<script type="text/javascript">
function showtest() {
    var value = document.getElementById("field[m][2]").value;
    alert(value);
}
</script>

</form>

</body>
</html>

Update: You can also use the following to get the value from the form element:

var value = document.forms.form1["field[m][2]"].value;
link|flag
That got me going the right direction.... being able to quote the name as a array index is nice. – DGM Sep 30 '08 at 23:10
The name can include [ and ] characters, but the id may not (even if browsers perform error recovery). – David Dorward Oct 1 '08 at 9:33
vote up 2 vote down

Use document.getElementsByName("input_name") instead. Cross platform too. Win.

link|flag
Actually getElementByName is not cross-platform. It's an IE specific thing. – Chris Pietschmann Sep 30 '08 at 22:50
Actually it is, developer.mozilla.org/en/DOM/… its just buggy from one browser to the next. – FlySwat Sep 30 '08 at 22:57
vote up 1 vote down

Is it possible to add an id reference to the form element and use document.getElementById?

link|flag
vote up 1 vote down

-- and in the old days (in HTML3.2/4.01 transitional/XHTML1.0 transitional DOM-binding) you could use:

form.elements["cache[m][2]"]

-- but the elements-stuff is, as Chris Pietschmann showed, not necessary as these binding-schemes also allow direct access (though I personally would prefer the extra readability !-)

link|flag
Well son of a gun. I thought I tried that but could only get numeric entries to work. But sure enough, it works. – DGM Oct 2 '08 at 0:55
.elements and a lot other element-collections (.images, .frames and so on !-) are exactly collections, so elements is accessible in both ways ... – roenving Oct 2 '08 at 8:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.