访问外部html文件的元素

时间:2017-06-12 13:26:57

标签: javascript jquery html

我有一个文件(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');
});

0 个答案:

没有答案