juery 选择器 选择多个元素
Posted 龙种人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了juery 选择器 选择多个元素相关的知识,希望对你有一定的参考价值。
使用,号:
$("#goodSource,#mailState") 选择了id为goodSource或者mailState的元素,当两者之间有任何一个有改变时,将会触发该操作。
//处理点击“物品来源”和“邮寄状态”事件 $("#goodSource,#mailState").change(function(){ var goodSourceId = $("#goodSource").children(‘option:selected‘).val(); alert($("#mailState").children(‘option:selected‘).val()); if (goodSourceId == 0) { //选择全部显示 renewPage(mailInfo); return; } var tmp = new Array(); for(var i=0,j=0;i<mailInfo.length;i++) { if (!(mailInfo instanceof Array) ) { break; } if (mailInfo[i].goodSource == goodSourceId) { tmp[j++] = mailInfo[i]; } } renewPage(tmp); })
以上是关于juery 选择器 选择多个元素的主要内容,如果未能解决你的问题,请参考以下文章