如何在ajax请求

时间:2015-06-27 05:05:49

标签: php jquery html ajax

我正在使用jquery从fileopen对话框打开一个图像。我想将ajax请求发送到php页面以将图像上传到数据库。我该怎么做。 我使用以下代码打开图像

$("#imgup").on("click",function(){
                $('#imgfile').trigger('click');
                var data=$("#imgfile").val();
            });

这是我的代码,即存在输入对话框的地方

<div id="profilepic">
                <img id="profileimg" src="getImage.php" width="100" height="100"/>
                <p style="margin-top: -20px;" id="imgchng"><a id="imgup" href="#">Change Image</a></p>
                <input id="imgfile" type="file"/>
            </div>

有人可以帮忙吗?提前致谢

1 个答案:

答案 0 :(得分:1)

您需要打开profileimg id

 $("#imgup").on("click",function(){
                $('#profileimg').trigger('click');
                var data=$("#imgfile").val();
            });