如何$ .post一个image.file输入?

时间:2012-02-22 23:15:59

标签: jquery ajax image forms input

我有这样的表格:

<form name="photo" enctype="multipart/form-data" action="<?php echo $_SERVER["PHP_SELF"];?>" method="post">
  <input id="file" type="file" name="image" size="30" />
  <input class="fancyButton" type="submit" name="upload" value="upload" />
</form>

这将发送一个空的var:

theImage = $('#file').val();
$.post('file.php', { img : theImage },
  function(data) {
    $('#pop').html($(data).html());
  });

我可以得到一些提示吗?

0 个答案:

没有答案