从隐藏的webview控制下拉菜单

时间:2013-04-12 10:50:34

标签: ios uiwebview

我有一个隐藏的webview加载一个html登录表单,其中包含一个下拉菜单,用户可以从中指定它的类型。我有一个分段控件设置,并希望它从html下拉菜单中选择,但无法使其工作。相关代码如下所示:

//The html code with the drop down menu. 

<div class="login_formtable">
    <label class="login_label">I am</label>
    <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>
</select>

1 个答案:

答案 0 :(得分:0)

你不应该这样做。

如果您想使用复选框,则需要使用UIButtonUIPickerView创建自己的用户界面。

如果您在UIWebView中尝试此操作,则无法在UIWebView中获取所选值。

我想这link可能对您有帮助。