用jquery帖子上传php图片

时间:2012-01-24 17:41:41

标签: php jquery image-uploading image-upload

ı想用jquery帖子上传图片。我不想使用表格。

问题是ı刚得到图像名称,ı不能用这个:

 $size=filesize($_FILES['image']['tmp_name']);

 $copied = copy($_FILES['image']['tmp_name'], $newname);

我的jquery函数:

$('#add').click(function(){

    var image=$('#image').val();


    $.post(
            'select.php?p=up',
            {img:image},
            function(answer){

                $('#sonuc').html(answer);
            }
    );

});

html代码:

<form name="newad" method="post" enctype="multipart/form-data"  action="" id="form">
<table>
<tr><td><input type="file" name="image" id="image"></td></tr>
<tr><td><input name="Submit" type="button" value="Upload" id="add"></td></tr>
</table>    
</form>

不是:它在提交表单时有效,但它不会像这样工作,并且我必须这样做。

1 个答案:

答案 0 :(得分:1)

我建议使用jsupload插件来实现此目的。你的javascript就是:

$(document).ready(function() {
$("#uploadbutton").jsupload({ 
    action: "addFile.do",
    onComplete: function(response){
      alert( "server response: " + response);
    }   
});