主页 > 编程资料 > Javascript >
发布时间:2015-08-28 作者:apizl 阅读:219次
  <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;
                }

文章由爱资料原创本文地址:https://www.apizl.com/archives/view-942-1.html,转载请以链接形式标明本文地址!
关键字词: