1 | $("#selandor option:selected").val() | 取得ID为selandor 的select元素当前选中项目的value值 |
2 | $($("#selandor ").children()[0]).attr("selected", "selected"); | 设置ID为selandor元素的第一个option选中 |
3 | $("#selandor").attr("disabled","") | 启用ID为selandor的元素 |
4 | $("#selandor").attr("disabled","disabled") | 禁用ID为selandor的元素 |
5 | for ( var i = 0; i <= 23; i++) { var j = i.toString(); tmstart = (j.length==1?"0"+j:j)+"00"; tmend = (j.length==1?"0"+j:j)+"59"; $("#starttime").append("<option value='"+ tmstart+"00" + "'>"+ tmstart+ "</option>"); $("#endtime").append("<option value='"+ tmend +"59"+ "'>"+ tmend+ "</option>"); } | 给ID为starttime 和 endtime的元素添加option |
6 | $("#selandor").show() | 元素显示 |
7 | $("#selandor").hide() | 元素隐藏 |
8 | ||
9 | ||