일반적인 A 태그 요청 을 ajax 요청 으로 변경 합 니 다.
프로필:
A 탭 의 요청 을 ajax 로 대체 합 니 다. 리 셋 함 수 를 지원 합 니 다. 기본 요청 은 alert 알림 을 통 해 성공 적 으로 요청 되 었 습 니 다.
사용법:
$(element).href2ajax(fn);
인자:
element: 태그 대상;
fn: 반전 함수, function (data) {...} 과 같은 데이터 수신
http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <span class="pln" style="color:rgb(0,0,0);"> </span><span class="atn" style="color:rgb(102,0,102);">src</span><span class="pun" style="color:rgb(102,102,0);">=</span><span class="atv" style="color:rgb(0,136,0);">"/js/jquery-1.6.2.min.js"</span><span class="tag" style="color:rgb(0,0,136);">> jQuery.fn.extend({ href2ajax: function (fn){ $(this).click(function(){ $.ajax({ url: this.href, error: function(XMLHttpRequest, textStatus, errorThrown){ alert(XMLHttpRequest.responseText); }, success: function(data){ try{ fn.call(this,data); }catch(exception){ alert(data); } } }); return false; }); } }); href = "/ js / abc? id = 1" > 삭제