码迷,mamicode.com
首页 > Web开发 > 详细

如何使用Jquery直接导入记事本的内容

时间:2018-01-28 11:11:33      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:type   如何使用   app   class   func   data   length   reader   res   

直接上代码

<!DOCTYPE html>
<html>
<head>
    <title>
    </title>
</head>
<body>
    jsReadFile:<input type="file" onchange="jsReadFiles(this.files)" />
    <button onclick="jsReadFiles();">read</button>
</body>
</html>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
    //js 读取文件
    function jsReadFiles(files) {
        if (files.length) {
            var file = files[0];
            var reader = new FileReader();//new一个FileReader实例
            if (/text+/.test(file.type)) {//判断文件类型,是不是text类型
                reader.onload = function () {
                    $(body).append(<pre> + this.result + </pre>);
                }
                reader.readAsText(file);
            }
            else {
                alert("请选择文本文件");
                return false;
            }
            //else if (/image+/.test(file.type)) {//判断文件是不是imgage类型
            //    reader.onload = function () {
            //        $(‘body‘).append(‘<img src="‘ + this.result + ‘"/>‘);
            //    }
            //    reader.readAsDataURL(file);
            //}
        }
    }
</script>

 

如何使用Jquery直接导入记事本的内容

标签:type   如何使用   app   class   func   data   length   reader   res   

原文地址:https://www.cnblogs.com/LoveQin/p/8367736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!