欢迎来到天天文库
浏览记录
ID:50451509
大小:70.51 KB
页数:1页
时间:2020-03-06
《easyui 下拉框内容联动显示.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、1.$(function(){ 2. 3. //下拉框内容联动显示(pclSelect控制subSelect;pclSelect对应subSelect值的类型;subSelect值的以类型为前缀) 4. var subSelectData = $("#subSelect").combobox('getData'); 5. $('#pclSelect').combobox({ 6. onSelect: function (record) { 7
2、. 8. //若类型不匹配,清空select选中值 9. var value = $('#subSelect').combobox('getValue'); 10. if(typeof(value) != 'undefined' && value.indexOf(record['value']) < 0){ 11. $("#subSelect").combobox("unselect",value);
3、12. } 13. 14. //内容联动显示 15. var temp = subSelectData.concat(); 16. for (var i = 1; i < temp.length; ){ 17. if(temp[i].value.indexOf(record['value']) < 0){ 18. //console.log(i
4、+" "+temp[i].value); 19. temp.splice(i,1); 20. }else{ 21. i++; 22. } 23. } 24. $("#subSelect").combobox("loadData",temp); 25. //console.log(temp); 26.
5、 //console.log(data); 27. } 28. }); 29. 30.});
此文档下载收益归作者所有