我们在用到下拉列表框select时,需要对选中的<option>选项触发事件,其实<option>本身没有触发事件方法,我们只有在select里的onchange方法里触发. 当我们触发select的双击事件时,用ondblclick方法.当我们要取得select的选中事件时,用document.all['name'].value来获取,其中name是select的名称.如果我们要得到select的全部的值就用一个for循环来实现.代码如下: var vi = document.a…
1.方法一 <input type="checkbox" onclick="checkboxOnclick(this)" /> <script> function checkboxOnclick(checkbox){ if ( checkbox.checked == true){ //Action for checked }else{ //Action for not checked } } 2.方法二 $('#allSelect').cli…