이 기사의 예에서는 jQuery 플러그인 확장 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
<script language="javascript" type="text/javascript"> function doSomething(callback) { // … // Call the callback callback('stuff', 'goes', 'here'); // 给callback赋值,callback是个函数变量 } function foo1(a, b, c) { // I'm the callback alert(a + " " + b + " " + c); } doSomething(foo1); // foo1函数将使用callback函数中的数据 stuff goes here var foo2 = function(a,b,c) { // I'm the callback alert(a + " " + b + " " + c); } doSomething(foo2); // foo2函数将使用callback函数中的数据 stuff goes here doSomething(function(a,b,c){ alert(a + " " + b + " " + c); // function函数将使用callback函数中的数据 stuff goes here }); </script>
콜백 매개변수가 유효하려면 함수여야 합니다. 콜백 역할을 하기 위해서입니다.
<script language="javascript" type="text/javascript"> function doSomething(callback) { // … // Call the callback if(typeof callback === 'function'){ callback('stuff', 'goes', 'here'); // 给callback赋值,callback是个函数变量 }else{ alert('jb51.net'); } } function foo1(a, b, c) { // I'm the callback alert(a + " " + b + " " + c); } doSomething(foo1); // foo1函数将使用callback函数中的数据 stuff goes here var foo2 = function(a,b,c) { // I'm the callback alert(a + " " + b + " " + c); } doSomething(foo2); // foo2函数将使用callback函数中的数据 stuff goes here doSomething(function(a,b,c){ alert(a + " " + b + " " + c); // function函数将使用callback函数中的数据 stuff goes here }); var foo3 = 'a'; doSomething(foo3); </script>
foo3이 함수가 아니면 jb51.net이 뜹니다
jQuery 인스턴스
원래 함수
$.fn.citySelect=function(settings)
콜백 추가
$.fn.citySelect=function(settings, changeHandle) // 添加回调函数changeHandle
콜백 함수에 값 할당
//选项变动赋值事件 var selectChange = function (areaType) { if(typeof changeHandle === 'function'){ // 判断callback是否是函数 var prov_id = prov_obj.get(0).selectedIndex; var city_id = city_obj.get(0).selectedIndex; var dist_id = dist_obj.get(0).selectedIndex; if(!settings.required){ prov_id--; city_id--; dist_id--; }; if(dist_id<0){ var data = { prov: city_json.citylist[prov_id].p, city: city_json.citylist[prov_id].c[city_id].n, dist: null }; }else{ var data = { prov: city_json.citylist[prov_id].p, city: city_json.citylist[prov_id].c[city_id].n, dist: city_json.citylist[prov_id].c[city_id].a[dist_id].s }; } changeHandle(data, areaType); // 返回两个处理好的数据 } };
도, 시, 군 데이터 데이터와 트리거된 변경 이벤트 유형을 가져옵니다. 각 이벤트
// 选择省份时发生事件 prov_obj.bind("change",function(){ cityStart(); selectChange('prov'); // 返回数据 }); // 选择市级时发生事件 city_obj.bind("change",function(){ distStart(); selectChange('city'); // 返回数据 }); // 选择区级时发生事件 dist_obj.bind("change",function(){ selectChange('dist'); // 返回数据 });프런트 엔드
을 사용하여 selectAgent 함수
$("#s_city").citySelect({ prov: "江苏省", city: "宿迁市", dist: "宿城区", nodata: "none" }, function(data, type) { selectAgent(data.city, data.dist); });에 대한 콜백에서 반환된 데이터를 사용합니다.
ajax 데이터를 통해 해당 에이전트를 가져옵니다.
플러그인 수정이 완료되었습니다.
function selectAgent(city,district){ $.ajax({ type:"POST", url:"{sh::U('Index/ajax',array('todo'=>'getagent'))}", data:"city="+city+"&district="+district, success:function(json){ json = JSON.parse(json); opt_str = "<option value=''>-请选择-</option>" if(json.status == 1){ $.each(json.data,function(index,con){ opt_str += "<option value="+con.id+">"+con.name+" 电话:"+con.tel+"</option>" }) } $('#agent_id').html(opt_str); } }); }