AJAX获取本地的txt文本数据
<html> <head> <title>测试</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> </head> <body> <div id='t'></div> </body> <script> getTimes() function getTimes() { $.get("./test.txt", function (data, textStauts) { var times = parseInt(data); $('#t').html(times + 1); }); } </script> </html>
这个通过AJAX获取txt文件的想法是出自于:在没有源码的情况下,修改aspx的界面代码获取网站浏览数
问题来了,这边想要修改txt文件的数字,目前只有IE允许,并且也只有IE有ActiveXObject,后面找到了XMLHttpRequest,但是也只有看到读取的方法
感谢:https://blog.csdn.net/qq_43485006/article/details/114605696
参考:https://www.w3school.com.cn/xmldom/dom_http.asp
https://developer.mozilla.org/zh-CN/docs/Web/API/XMLHttpRequest