我有这样的表格:
<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());
});
我可以得到一些提示吗?