我正在使用.get()来获取页面上的一些信息,然后我将使用这些数据查找匹配的文本并显示它。
$.get('http://website.com', function(data) {
result = $(data).match(/Status(.*?)<br>/);
console.log(result);
});
我无法匹配数据(我也试过没有jQuery,所以'字符串'只是数据),但结果相同。 我尝试过toString(),innerHTML等等,但它没有用。
我试着寻找答案,但我似乎无法知道。 .html()也不起作用。
我想找到的东西:
<strong>Status:</strong>
"some text"
<p>Test</p>
<br>
提前致谢
答案 0 :(得分:0)
尝试将数据类型设置为text
并尝试
$.get('http://website.com', function(data) {
result = data.match(/Status(.*?)<br>/);
console.log(result);
}, 'text');