PHP 文件上传使用 jquery post
2022-08-31 00:30:48
如果有人知道此代码的问题,请告诉我。
基本上我想使用jQuery上传文件
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(event) {
$('#form1').submit(function(event) {
event.preventDefault();
$.post('post.php',function(data){
$('#result').html(data);
});
});
});
</script>
</head>
<body>
<form id="form1">
<h3>Please input the XML:</h3>
<input id="file" type="file" name="file" /><br/>
<input id="submit" type="submit" value="Upload File"/>
</form>
<div id="result">call back result will appear here</div>
</body>
</html>
和我的php'post.php'
<?php
echo $file['tmp_name'];
?>
上载的文件名不会返回。问题是我无法访问上传的文件。
提前致谢!希夫