jQuery AJAX post with fileupload

后端 未结 2 1357
梦如初夏
梦如初夏 2021-01-25 11:22

I have a functional page posting data to a Page WebMethod

[WebMethod()]
public static string sayHello(string pTest, string pText)
{
  return pTest + \" - \" + pT         


        
2条回答
  •  萌比男神i
    2021-01-25 12:03

    Assuming sayHelloButton is the id of the submission button on the form you are using to upload the file, be sure to add: event.preventDefault(); to your $("#sayHelloButton").click() function or use javascript.void(); on the form to prevent the browser from posting the data using its default behavior. Otherwise, your ajax code will never even execute.

    $("#sayHelloButton").click(function (event) {
    event.preventDefault();
    var name = $('#name').val();
    var text = $('#text').val(); 
    var dataString = JSON.stringify({
      pTest: name,
      pText: text
    }); 
    

提交回复
热议问题