ajax读取文本内容(此处的txt文件和html文件处于同级目录)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax读取文本内容(此处的txt文件和html文件处于同级目录)相关的知识,希望对你有一定的参考价值。

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style>
</style>
<title>read file</title>
</head>
<script src="jquery-1.11.2.js"></script>
<script>

            $(function() {
                $("#btn1").click(function(){
                    $.ajax({
                        type: "get",
                        url: "1.txt",
                        dataType: "text",
                        async: true
                    }).done(function (data) {
                        $("#one").html(data.replace(/\r\n/ig, ‘</br>‘));//替换回车行成换行符
                        //console.log(data.replace(/\r\n/ig,‘</br>‘));
                    });
                });
            });
        </script>
    <body>
        <div id="one" style="width: 300px;background: greenyellow;margin: 10px;;">
        </div>
        <input type="button" id="btn1" value="点击获取"/>
    </body>
</html>

 

以上是关于ajax读取文本内容(此处的txt文件和html文件处于同级目录)的主要内容,如果未能解决你的问题,请参考以下文章

Python 文件未读取文本文件的内容

在LINUX 下 使用PHP 修改文本文件

关于C语言中文本文件的逐行读取的实现

js怎么读取本地txt文件

将文本区域的文本保存在数据库中

android怎样读文本文件的内容