-1

如何用 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>'
4

1 回答 1

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>

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

于 2013-02-11T00:16:10.380 回答