我正在尝试在本地读取一个文本文件,该文件具有 eg.www.google.com 的 url,并将此字符串作为 src 传递给 iframe。但问题是 src 附加了这个:
//localhost/myfolder/%25/www/google.com
localhost/myfolder
我在其中使用 iframe 的文件的路径在哪里。
如果有人可以帮助我,请提前感谢。
function read()
{
var txtFile = new XMLHttpRequest();
txtFile.open("GET", "http://localhost/myfolder/Text.txt",true);
txtFile.onreadystatechange = function ()
{
if (txtFile.readyState === 4)
{
// Makes sure the document is ready to parse.
if (txtFile.status === 200)
{
var alltext=txtFile.responseText;
var linetext=txtFile.responseText.split("\n");
var delimeter = '^';
var text0= linetext[0];
var splitted = text0.split(delimeter);
$('#iframe1').attr('src', splitted[1]);
}
}
}
txtFile.send(null)
}
我正在使用此代码来读取文件。