0

我正在尝试使用填充有分段控制器的 web 视图从 html 下拉列表中获取值。

谁知道怎么输入

 NSString *string [NSString stringWithFormat:@"document.getElementsBy 

对于以下 html 代码并选择选项值之一

<div id="loginselect" style="clear:both:">
            <select name="usertype" size="1"  id="usertype" class="select1" >     
<option value="0"  selected="selected">Staff</option>
<option value="1" >Student</option>
<option value="2" >Parent</option>
4

2 回答 2

0
document.getElementByID('usertype').value 
于 2013-04-13T15:30:49.297 回答
0

Sixcent 的答案给出了正确的答案。我只需要添加这样的值:

document.getElementById('usertype').value='1' 
于 2013-04-14T08:06:07.937 回答