次の要素から自分の 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 で学生を選択することでこれを行いました。ただし、コードが次のようになっている場合: ほぼ同じですが、それを行う方法が見つかりません。
<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を入力する方法を教えてもらえますか? それともできませんか?