• ベストアンサー

objectのindex値って取れますか?

textのonblurでjavaScriptを呼んで、その際this でobject自体を渡しているのですが、そのobjectのindex値ってとれるんでしょうか? どなたかご教授ください!

質問者が選んだベストアンサー

  • ベストアンサー
noname#22259
noname#22259
回答No.1

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><title>Untitled</title> <meta http-equiv="Content-Script-Type" content="text/javascript"> <script type="text/javascript"> function F(sth) { //sth ..... alert(event.srcElement.name.charAt(1)-1) } </script> </head> <body> <form> <input type="text" name="t1"onblur="F(this)"><br> <input type="text" name="t2"onblur="F(this)"><br> <input type="text" name="t3"onblur="F(this)"><br> <input type="text" name="t4"onblur="F(this)"><br> <input type="text" name="t5"onblur="F()"><br> </form> </body> </html>

関連するQ&A