<input type="file" name="file" id="shop_file" >
$(function() {
$('#shop_file').change(function() {
shopFileUpload();
});
})
//upload file
function shopFileUpload() {
var city_id = $("#shop_fenlei_2").val();
$.ajaxFileUpload({
url: '?act=add_city_img&city_id=' + city_id,
secureuri: false,
fileElementId: 'shop_file',
dataType: 'json',
success: function(data, status) {
if (data.status == '1') {
alert(data.msg);
window.location=""
} else {
//clear
alert(data.msg);
console.log(data.msg);
}
},
error: function(data, status, e) {
//print error
alert(e);
}
});
return false;
}
关键字词: