Передача более одного параметра из jQuery в ASHX - PullRequest
1 голос
/ 05 июня 2011

Как я могу передать более одного параметра из jQuery в файл ASHX.Я хочу отправить три значения с POST , а не GET .

Ответы [ 2 ]

3 голосов
/ 05 июня 2011
$.ajax({
 'type' : 'POST',
 'url' : '/my_great_ashx_file.ashx',
 'data' : {
  'first_field' : 'foo',
  'second_field' : 'bar',
  'third_field' : 'buz'
 },
 'success' : function () {
  alert('This was a triumph.');
 }
})
2 голосов
/ 05 июня 2011
$.post("test.php", { name: "John", time: "2pm" },
   function(data) {
     alert("Data Loaded: " + data);
   });

Код от: http://api.jquery.com/jQuery.post/

...