前台jquery:
$.ajax({url:"", //执行查询的路径
type:"post", //或get
dataType:"text",
data:{q:"上装='T恤' and 裤装='牛仔裤'"},
success:function(data){
},
error:function(){
}
})
后台:
string sqlwhere = Request.QueryString["q"]请求吗??$.ajax({
url: "/XXXXXX/XXXXXXX",
data: { id: id },
type: "post",
dataType: "json",
success: function (res) {
},
error: function (res) {
}
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)