美文网首页
无标题文章

无标题文章

作者: Angle_Ch | 来源:发表于2017-01-16 15:12 被阅读0次

    文件上传

    文件:

    $(document).ready(function() {

    //当文件改变的时候

    $("#postForm").change(function() {

    $("#apoiqpo1").html("aaa");

    console.log($("input[name='file']").val());//获取文件名字

    varstr =$("input[name='file']").val();

    console.log(str.lastIndexOf("."));

    //获取文件后缀名

    console.log(str.substr(str.lastIndexOf(".")+1));

    varhzStr=str.substr(str.lastIndexOf(".")+1);

    if(hzStr!='html'|| hzStr!='xhtml'){

    alert("文件类型错误!请上传后缀名以html或者xhtml的类型");

    $(this).val("");

    }

    });

    //上传

    $("#ipload").click(function() {

    vareif =newFormData(document.getElementById("postForm"));

    $.ajax({

    url:"/upload",

    type:"POST",

    data: eif,

    processData:false,// 告诉jQuery不要去处理发送的数据

    contentType:false,// 告诉jQuery不要去设置Content-Type请求头

    success:function(data) {

    $('#serverResponse').html(data);

    }

    });

    });

    });

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/ndkpbttx.html