如何使用我在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>';
答案 0 :(得分:0)
假设i = 1,
document.getElementById("hello1").value
假设你想要它动态:
document.getElementById("hello<?=$i?>").value
编辑: 有时你在PHP中没有short_tag,然后你会使用
document.getElementById("hello<?php echo $i;?>").value