Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to get value in javascript when input name/id generated by looping, just like this.

name="items[1AV08EBfeb][srdnReqQty1AV08EBfeb]"

--js--
var form = document.forms[0];
var get = form.items[1AV08BBjan][srdnReqQty1AV08BBjan].value;

alert(get); //error missing ]

--js--

Any suggestion ?

Thanks
MRizq

share|improve this question
what exactly is this about? – naveen Jul 29 '11 at 7:52
Always use id attribute for html elements – Positive Jul 29 '11 at 7:52
@Shakti: No, you kind of need name if you're going to submit the form element. id and name serve different purposes, and each has its use. – T.J. Crowder Jul 29 '11 at 7:55
::naveen: i want to get their value and make some condition. ::Shakti Singh: id/name returned same value, id="items[1AV08EBfeb][srdnReqQty1AV08EBfeb]" – MRizq Jul 29 '11 at 7:58

1 Answer

up vote 3 down vote accepted

If the name of the element really is

name="items[1AV08EBfeb][srdnReqQty1AV08EBfeb]"

...as you've shown, then:

var form = document.forms[0];
var get = form.elements["items[1AV08EBfeb][srdnReqQty1AV08EBfeb]"].value;

Live example

There's nothing special about the [ and ] characters within the name attribute of a form element at the HTML and JavaScript level. Some server-side technologies (like PHP) will look for those characters in the names of submitted form fields and turn them into arrays, but that's not an HTML or JavaScript thing.

share|improve this answer
</incredulous> – Steve Jul 29 '11 at 7:56
Thanks T.J. Crowder, your explanations is good. – MRizq Jul 29 '11 at 8:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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