在javascript中获取输入文本的id值

时间:2014-03-08 12:09:25

标签: javascript php mysql

如何使用我在javascript中生成的id来获取值。

echo '<td><input type=text id=hello'.$i.' name=hello data-id='.$fet["username"].' onchange=loadXMLDoc1(this.value,this,"hello"); value='.$fet["username"].'></td>';

1 个答案:

答案 0 :(得分:0)

假设i = 1,

document.getElementById("hello1").value

假设你想要它动态:

document.getElementById("hello<?=$i?>").value

编辑: 有时你在PHP中没有short_tag,然后你会使用

document.getElementById("hello<?php echo $i;?>").value