jQuery AJAX post with fileupload

后端 未结 2 1349
梦如初夏
梦如初夏 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条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-25 11:39

    Can't tell for all plugins, but I'm using jQuery Form without any problems. No flash involved, it just creates hidden iframe instead.

    Here's a demo.

    but how will it then be possible to both post data and upload with only one click
    The process is the same as with normal ajax request. You declare a form element, but instead of $('#myform').submit(); do $('#myform').ajaxSubmit().

提交回复
热议问题