我有这个选择
<select name="clients[]" size="20" multiple="multiple" id="clients" style="min-width:275px;">
<option id="first">First</option>
<option id="second">Second</option>
<option id="third">Third</option>
</select>
我试图让这个警报框在 id = first 时出现,我试过了
$(document).ready(function(){
if($('#clients option:selected').val() == 'first'){
alert('hi');
}
});
但什么都没有出现......我做错了什么