首页 > 代码库 > JS给HTML5页面<Select></Select>绑定选中项
JS给HTML5页面<Select></Select>绑定选中项
例1:
1 //第二级案件类型发生改变 2 $("#SecondCasetypelist").change(function () { 3 var child = $("#SecondCasetypelist").children(); 4 var selecting = 0; 5 for (i = 0; i < child.length; i++) { 6 if (child[i].selected) { 7 selecting += 1; 8 } 9 } 10 if(selecting == 0) 11 { 12 child[0].selected = true; 13 } 14 else if(selecting > 1) 15 { 16 child[0].selected = false; 17 } 18 loadHtml($(‘#tableCustom‘), ‘CustomReport‘, { Year: $("#Year").val(), Month: $("#Month").val(), caseStatus: $("#SecondCasetypelist").val(),flot:"2" }); 19 });
例2:
1 //列出会议类型函数 2 function appendStrConferenceType(source) 3 { 4 debugger 5 var type = $(‘#con_category‘).children(); 6 if(source == 1) 7 { 8 type[0].selected = true; 9 } 10 else if(source == 2) 11 { 12 type[1].selected = true; 13 } 14 else 15 { 16 type[2].selected = true; 17 } 18 }
JS给HTML5页面<Select></Select>绑定选中项
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。