=============js================
復(fù)制代碼 代碼如下:
var xhr = new XMLHttpRequest();
xhr.open("get", 'Controls/gengCart.ashx?CartID=' + input + 'count=' + inp, true);
xhr.setRequestHeader("If-Modified-Since", "0");
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 xhr.status == 200) {
var result = xhr.responseText;
var json = eval("(" + result + ")");
alert(js.name);
}
};
xhr.send(null);
============jquery=====================
復(fù)制代碼 代碼如下:
$.post('Controls/Cart.ashx', { "productID":%= GetID %>,"count":"1","userID":'%= uid %>' }, function (data,statu) {
if (statu == 'success') {
if(data=="false"){
alert("請(qǐng)登錄后再進(jìn)行此操作");
}
else{
window.location="gwc.aspx?uid="+'%= uid%>';
}
}
})
您可能感興趣的文章:- ASP.net與SQLite數(shù)據(jù)庫(kù)通過(guò)js和ashx交互(連接和操作)
- jquery ajax,ashx,json的用法總結(jié)
- Chrome內(nèi)核下由ashx輸出的js代碼不起作用的解決方法
- jQuery getJSON()+.ashx 實(shí)現(xiàn)分頁(yè)(改進(jìn)版)
- 在一般處理程序(ashx)中彈出js提示語(yǔ)