我已经设法从以下元素将下拉值附加到我的 url。
<label class="login_label" for="usertype">I am</label>
<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>
我通过附加 ?usertype=1 在 url 中选择 student 来做到这一点。但是,当代码看起来像这样:几乎相似时,它找不到方法来做到这一点。
<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>
有人可以告诉我如何从 url 中的最后一个代码中输入值 1 吗?还是做不到?