10/10/2018, 09:20
JavaScript đọc file text.
Bác nào chỉ em cách đọc nội dung một file text *.txt bằng JavaScript với? Hay có code cho em phát cũng đc
Bài liên quan
function ReadFiles()
{
var fso, ts, s;
var ForReading = 1;
fso = new ActiveXObject("Scripting.FileSystemObject");
ts = fso.OpenTextFile("testfile.txt", ForReading);
s = ts.ReadLine();
document.write("File contents = '" + s + "'");
ts.Close();
}
[code]
//================================================== ============
function loadXMLfile(pstr){
var xmlDoc;
// code for IE
if (window.ActiveXObject)
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
else if (document.implementation && document.implementation.createDocument)
xmlDoc = document.implementation.createDocument("","",null) ;
else
alert('Your browser cannot handle this script');
xmlDoc.async = false;
xmlDoc.load(pstr);
return xmlDoc;
//var objNodes =xmlDoc.getElementsByTagName('item');
//for(var intCount = 0;intCount < objNodes.length;intCount++)
//{
// document.write(objNodes.item(intCount).childNodes[0].nodeValue);
// document.write(objNodes.item(intCount).attributes[0].name);
// document.write(objNodes.item(intCount).attributes[0].value);
//}
}
[code]
Tạo file redirect.php
<?php header("Location: ".$_GET***91;'url'***93;); ?>