我确信我在这里做的事情很糟糕,但我无法弄清楚是什么。
<script type="text/javascript">
$(function () {
$("li").bind("click", function () {
var sel = $(this).attr('id').toString();
$.ajax({
type: "POST",
contentType: "application/json",
data: sel,
url: "Default.aspx/SaveValue",
dataType: "text",
success: function (data) {
alert(data.d);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
debugger;
}
});
});
});
</script>
有什么建议吗? 这是收集的调试信息
更新:更改为data: "{var1:'test'}",
和dataType: "json",
一切正常,
答案 0 :(得分:4)
更改为data: "{var1:'test'}",
和dataType: "json",
一切都按预期工作。
特别感谢Sparky和所有评论者当然