如何逐行读取txt文本?Ajax可以实现么
想要读取分行txt文件,并在每行前后添加内容。
如txt文件内容是这样的
http://www.baidu.com/ http://www.google.com.hk/
我想最终输出的结果是
<a href="error.html" /></a> <a href=""><img src="2.jpg" /></a>
就是这样遍历…请问怎样实现?
我在W3School找到一段代码,直接读取txt文件的,不能添加前后缀。
<html> <head> <script type="text/javascript"> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","/ajax/test1.txt",false); xmlhttp.send(); document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } </script> </head> <body> <div id="myDiv"><h2>Let AJAX change this text</h2></div> <button type="button" onclick="loadXMLDoc()">通过 AJAX 改变内容</button> </body> </html>
求大神相助,谢谢。
解决方案:
<html> <head> <script type="text/javascript"> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","/ajax/test1.txt",false); xmlhttp.send(); var i=1; document.getElementById("myDiv").innerHTML=xmlhttp.responseText.replace(/.+/g,function(url){ return '<a href="'+ url +'"><img src="'+ i++ +'.jpg" /></a>' }) } </script> </head> <body> <div id="myDiv"><h2>Let AJAX change this text</h2></div> <button type="button" onclick="loadXMLDoc()">通过 AJAX 改变内容</button> </body> </html>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索求解决谢谢
, 求大神指教。
, 文件
, 求大神解答跪求
, xmlhttprequest
, 内容
, 求大神解答一下
, 求大神帮忙
, function
, txt
, 求大神指点
, 求大神解答
, 求大神解决
xmlhttp
js逐行读取txt文本、python 逐行读取文本、按键精灵逐行读取文本、js逐行读取文本、c 逐行读取txt文件,以便于您获取更多的相关知识。