HTML-страница
// in script tag
$(document).ready(function () {
var url = "list.ashx";
$.get(url + "?get", function (r1) { alert("get: " + r1); });
$.post(url + "?post", function (r2) { alert("post: " + r2); });
$.ajax(url + "?ajax", function (r3) { alert("ajax: " + r3); });
$("div:last").load(url + "?load", function (r4) { alert("load: " + r4); });
});
// in body tag
<div></div>
в 'list.ashx'
public void ProcessRequest (HttpContext context) { context.Response.Write("ok"); }
результат
- $. Get и $ .post достигают list.ashx, но
нет возврата
- $. Ajax не достигает list.ashx
- $. Загрузка полностью успешна
Проблемы
- почему работает только '$ .load'?
- как заставить работать $ .get или $ .post?
обновление
$("input").click(function () {
$.ajax({ url: url
, context: this
, data: "ajax=test"
, cache: false
, async: false
, global: false
, type:"POST"
, processData: false
, dataType: "html"
, success: function (data) { alert(data); }
, error: function (data) { alert(data.responseText); }
});
});
всегда ошибка: function () {}, но 'data.responseText' - правильный результат !!