我正在尝试使用填充了分段控制器的webview从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>
答案 0 :(得分:0)
document.getElementByID('usertype').value
答案 1 :(得分:0)
第六代的回答给出了正确的答案。我只需添加这样的值:
document.getElementById('usertype').value='1'