我正在尝试使用jquery ajax从客户端向服务器传递数据。它应该非常简单,它是.i在home.aspx中添加了一个静态方法,并使用ajax将数据发布到那里。但我没有想法为什么它总是说找不到错误。请问任何人可以帮助我吗?这是我的ajax代码。
<script type="text/javascript">
$(document).ready(function () {
$('#form1home a').click(function () {
var position = $(this).parent().attr("id");
$.ajax({
type: 'POST',
url: 'home.aspx/clickaction',
contentType: 'application/json',
dataType: 'json',
data: JSON.stringify({ "position":position }),
success: function () {
},
error: function (request, status, error) {
alert(request+" "+error);
}
});
});
});
我也给出了c#中使用的静态方法。
[WebMethod]
public static void clickaction(string position)
{
DataBaseClass db = new DataBaseClass();
string qry = "select * from cms_tbl where position='" + position + "' and shopid='" + HttpContext.Current.Session["shopid"].ToString() + "'";
DataTable dt = db.ConnectDataBaseReturnDT(qry);
if (dt.Rows[0]["type"].ToString() == "product")
{
string path = "product.aspx?id=" + dt.Rows[0]["items"].ToString() + "&shop=" + HttpContext.Current.Session["shopid"].ToString();
HttpContext.Current.Response.Redirect(path);
}
else if (dt.Rows[0]["type"].ToString() == "subcat")
{
string path = "productdisplay.aspx?id=" + dt.Rows[0]["items"].ToString() + "&sid=" + HttpContext.Current.Session["shopid"].ToString();
HttpContext.Current.Response.Redirect(path);
}
else if (dt.Rows[0]["type"].ToString() == "brand")
{
string path = "productdisplay.aspx?bid=" + dt.Rows[0]["items"].ToString() + "&sid=" + HttpContext.Current.Session["shopid"].ToString();
HttpContext.Current.Response.Redirect(path);
}
}
答案 0 :(得分:0)
我建议你检查的唯一一件事是你从父母的属性
获得的位置值var position = $(this).parent().attr("id");
用警报检查。