asp.net中js和jquery不同的调用ashx的方法
程序员文章站
2024-01-16 22:20:10
=============js================
var xhr = new XMLHttpRequest();
...
=============js================
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);
============jq=====================
$.post('Controls/Cart.ashx', { "productID":<%= GetID %>,"count":"1","userID":'<%= uid %>' }, function (data,statu) {
if (statu == 'success') {
if(data=="false"){
alert("请登录后再进行此操作");
}
else{
window.location="gwc.aspx?uid="+'<%= uid%>';
}
}
})
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);
============jq=====================
$.post('Controls/Cart.ashx', { "productID":<%= GetID %>,"count":"1","userID":'<%= uid %>' }, function (data,statu) {
if (statu == 'success') {
if(data=="false"){
alert("请登录后再进行此操作");
}
else{
window.location="gwc.aspx?uid="+'<%= uid%>';
}
}
})
上一篇: JSP概述和页面技术
推荐阅读
-
asp.net中js和jquery不同的调用ashx的方法
-
解决同一页面中两个iframe互相调用jquery,js函数的方法
-
jQuery中调用ajax方法时在不同浏览器中遇到的问题
-
入口函数的作用,以及原生js和jQuery库中的入口函数的不同
-
jQuery中调用ajax方法时在不同浏览器中遇到的问题
-
原生js中的forEach和jQuery中的each方法的区别
-
asp.net中js和jquery不同的调用ashx的方法
-
浅析jQuery中调用ajax方法时在不同浏览器中遇到的问题_jquery
-
浅析jQuery中调用ajax方法时在不同浏览器中遇到的问题_jquery
-
在js(jquery)中获得文本框焦点和失去焦点的方法_javascript技巧