最近做的html5手机端有涉及 手机端上传图片
首先页面引用ajaxfileupload.js
https://download.youkuaiyun.com/download/Astpiy/12573379
html页面
<label for="file" style="margin-left:20%;margin-top:5%;">
<img src="Admin/images/r1003.jpg" style="border-radius: 50% !important; width: 100%;"/>
</label>
<input id="file" type="file" style="display: none" name="file" onchange="img()" accept="image/gif,image/jpeg,image/jpg,image/png,image/svg" />
这是有用到 label 的新特性 for 是为了设置上传的样式
然后js传值至ajax
//上传图片
function img() {
$.ajaxFileUpload({
url: "Admin/ashx/Upload.ashx",
secureuri: false,
f