给option添加点击事件,可以用这个方法。
1 $("#demandID").on("change",function(){ 2 pID = $("option:selected",this).val();//需求主键 3 queryDemandByPid(pID); 4 });
#demandID是select标签的id;
queryDemandByPid(pID)是option点击事件需要调用的方法,因需求而异。
给option添加点击事件,可以用这个方法。
1 $("#demandID").on("change",function(){ 2 pID = $("option:selected",this).val();//需求主键 3 queryDemandByPid(pID); 4 });
#demandID是select标签的id;
queryDemandByPid(pID)是option点击事件需要调用的方法,因需求而异。