我有一个文件(html),我想抓住其中一个类中的所有内容。这两个文件都在我的计算机上,并且是脱机的。我想我需要以某种方式将此文件用作document
。然后,我可以在class
属性中获取所有内容。
我在网上找到了这个,但我似乎无法工作。
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
console.log(allText)
return allText;
}
}
}
rawFile.send(null);
}
var x = readTextFile("~/repos/ranjs/source.htm")
这可能有用吗?
$(document).ready(function(){
var class = $('.class').load('/filepath/file.html');
});