jquery单击事件的写法
方式一:
1 //点击要素,修改URL 2 $(document).on('click',"#modUrlYs" ,function (){ 3 //$("#modUrlYs").dblclick(function(){ 4 var selectVal = $('#modUrlYs option:selected').attr("selectId");//选中的值 5 6 if(typeof(selectVal)=="undefined"){ 7 return; 8 } 9 10 //根据要素查找URL 11 $.ajax({ 12 url:"/crwalTask/getUrlNameByYs", 13 type:"post", 14 data:{"ysid":selectVal}, 15 success:function(data){ 16 $(".u-popup-A5-revise-wrap #atModUrl").empty(); 17 var str = ""; 18 $.each(data,function(i,item){ 19 str += "<option selectId='"+item.urlId+"'>"+item.originalUrl+"</option>" 20 }); 21 $(".u-popup-A5-revise-wrap #atModUrl").append(str); 22 } 23 }); 24 });