<body> <form id="f" method="get" action="/code/submit.php"> <input type="text" name="var[list]" id="ixv[list]" value=""> <button type="button" title="Save" onclick="check();"> </form> </body>
Now in my javascript, I want to access that input value. I tried this, and of course it doesn't work since [] looks like an array in JS.
function check() { var x=var[list].value; alert(x); }
The problem is that the variable name has [] in it. How can I get that input field value in javascript?
--You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.