在javascript中选择控制选项变量替换

时间:2013-02-10 21:27:28

标签: javascript html

如何使用javascript中的变量替换以下select标记中的字符串。 这就是我所拥有的。

<select id="requestItemStatus" name="select-choice-1" id="select-choice-custom" data-native-menu="false">
    <option value="Open">Open</option>                                      
</select>

javascript

'<option value='G_requestsStatus_returnset[0].ItemRequestedStatusID'>'G_requestsStatus_returnset[0].Name'</option>'

1 个答案:

答案 0 :(得分:1)

我认为你的意思是这样的?

<select id="requestItemStatus" name="select-choice-1" id="select-choice-custom" data-native-menu="false">
    <option id="foo" value="Open">Open</option>                                      
</select>

<script type="text/javascript">

document.getElementById("foo").text = "Close";

</script>

这会将您的选项更改为“关闭”或“”中的任何内容,因此您现在要做的就是将该行插入您想要调用的位置