在 www.example.com/page_a / 上可以运行一个搜索文本的javascript代码" hello"位于 www.example.com/page_b/my_file.txt 的文件内?
这可以用javascript / jquery /任何其他javascript框架吗?
答案 0 :(得分:4)
是的,有可能,jquery最简单。
你需要"得到"文本文件的内容如下:
$interest = (object)['vehicles' => []];
echo $interest->vehicles[0]['make'];
答案 1 :(得分:2)
尝试使用jquery $ .get()
$.get("text file path",function(textString) {
// handle the returned string ..
},"text/plain")
答案 2 :(得分:0)
我正在使用indexOf()来使用JavaScript在文本文件中搜索字符串。这是代码
$.get("www.example.com/page_b/my_file.txt", function(contents){
var str = "Hello";
if(contents.indexOf(str) != -1){
console.log(str + " found");
}
})