我正在动态生成一个使用php的html页面,其中我生成一个下拉组合,其中包含属性id和value,选择任何选项我希望使用js获取所选选项的值和id。
echo“”;
while($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "<option id='".$row['Id']."' value='".$row['name']."'>".$row['name']."</option>";
}
echo "</select>";
以上是代码。我怎么能这样做。
答案 0 :(得分:1)
<select onchange="var opt = this.options[this.selectedIndex]; alert(opt.id); alert(opt.value);">
...
</select>