脚本捕捉图像

时间:2012-10-07 22:07:13

标签: php javascript html ajax forms

我有这个脚本,所以它转到../AdsCreate/CreateCar.php读取表单并插入数据库并将页面加载到某个div中,这一切都正常。

我有一个问题,表单的一部分是上传图片,现在它没有被我告知它是因为下面的脚本序列化数据而不是基于文件。

这是脚本。

<script type="text/javascript">
jQuery(document).ready(function($) {

$("#Submit").click(function() {

var url = "../AdsCreate/CreateCar.php"; // the script where you handle the form input.

$.ajax({
   type: "POST",
   url: url,
   data: $("#myForm").serialize(), // serializes the form's elements.
   success: function(html){ $("#right").html(html); }
 });

return false; // avoid to execute the actual submit of the form.
});
});
</script>

这是我的表格

<form method="post" enctype="multipart/form-data" id="myForm">
 <table class="default1" style="width: 100%" align="center">
      <tr>
        <td class="content1" colspan="3"><h3><b>Car Ads</b></h3></td>
      </tr>
      <tr>
      <td class="content1" width="70%">Make: <input type="text" name="name"></td>
      <td class="content1" width="15%">Model: <input type="text" name = "email"></td>
      <td class="content1" width="15%">Year: <input type="text" name = "phone"></td>
     </tr>
      <tr>
      <td class="content1" colspan="3">Main Photo: <input type="file" name="photo"></td>
     </tr>
      <tr>
      <td class="content1" colspan="3"><input type="submit" value="Upload" id="Submit"></td>
     </tr>
</table>
</form>

如何更改脚本以便我上传一个也有文件上传的表单?

1 个答案:

答案 0 :(得分:0)

您可以使用此插件单独上传文件:

  

http://blueimp.github.com/jQuery-File-Upload/

您还可以使用jQuery Forms上传文件:

  

http://www.malsup.com/jquery/form/#file-upload

确保在选择文件后禁用提交按钮,以便在用户提交表单之前先上传图像。