ashx ajax 與 自訂javascript函數

來源:互聯網
上載者:User

標籤:

1.getUserPower為自訂javascript函數

  擷取許可權

 (1).ashx 處理常式的相對位址(必須是相對位址)
  (2).au 許可權名稱
  (3).classname 類名
  (4).funsuccess 成功時做的事,函數。
*/
$.fn.getUserPower = function (operate, mdlName, funsuccess) {
$(this).click(function (event) {
if (cookie == "admin") {
if (mdlName == "SectionInfoMag" || mdlName == "ToolsSectionMag" || mdlName == "ToolsInfoMag" || mdlName == "ParamInfoMag") {
alert("admin使用者沒有該許可權!");
return false;
}
else {
funsuccess(); //成功後做的事
return true;
}
}
//取消執行其他的事件處理函數並取消事件冒泡.如果同一個事件綁定了多個事件處理函數, 在其中一個事件處理函數中調用此方法後將不會繼續調用其他的事件處理函數
//event.stopImmediatePropagation();
$.get(ashx
, { key: "byone", operate: operate, userID: cookie, mdlName: mdlName }
, function (data, textstatus) {
if (textstatus == "success") {//擷取成功
if (data == "true") {
funsuccess(); //成功後做的事
} else if (data == "false") {
alert("沒有許可權!");
return false;
} else {
alert(data);
return false;
}
} else {
alert(textstatus);
return false;
}
})
});

};

 

2.ashx與ajax之間的調用

$("#btn_del").getUserPower("Del", "ParamInfoMag", function()
{
var tid = $(":checked").getBind("tid", ",");
if (tid == "") {
alert("請選擇要刪除的行!");
return;
} else {

//判斷目前使用者是否有許可權刪除所選擇的擰緊參數資訊
$.get("../ashx/ParamInfoMag.ashx?" + new Date(), { key: "delpower", ids: tid }, function(data, textStatus) {
if (data != "true")
{
alert(data);
return;
}
else
{
if (!confirm("是否確定刪除?")) {
return;
}

$.get("../ashx/ParamInfoMag.ashx?" + new Date(), { key: "del", ids: tid }, function(data, textStatus) {

if (textStatus == "success") {
if (data == "true") {
alert("刪除成功!");
$("#img_sel").click();
//window.location = "ParamInfo.aspx";
} else if (data == "false") {
alert("刪除失敗!");
} else {
alert(data);
}
} else {
alert(textStatus);
}

}); //get
}
});

}
});

ashx ajax 與 自訂javascript函數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.