Skip to content

Instantly share code, notes, and snippets.

@crazylion
Created January 31, 2011 15:08
Show Gist options
  • Save crazylion/804149 to your computer and use it in GitHub Desktop.
Save crazylion/804149 to your computer and use it in GitHub Desktop.
$(".authBtn").live("click",function(){
var _this =this;
$.getJSON('auth_process.php?type=json',{Id:$(this).attr("id")},
function(ret) {
//成功
if(ret=="pass"){
$(_this).remove();
// console.log("啟用!!!");
}else if(ret=="fail"){
window.alert("驗證手續失敗請再試一次或刷新頁面!!!");
}else if(ret==null){//刪除失敗
window.alert("啟用沒救了吧!!!");
}
});
});
@crazylion
Copy link
Author

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment