我正在使用.load
加载页面并更改其窗口的标题。
页面正在加载,这里唯一的问题是我无法从响应中提供的 HTML 代码中选择标题。这是代码
$('.vspageresult').load(pagetoload, function (response, status, xhr) {
if (status != 'error') {
// change the link in url
window.history.pushState(null, '', pagetoload);
// change the window's title
document.title = response;
}
});
这可以做所有事情,但是您会注意到document.title
设置为response
那是因为我已经尝试了所有内容,我尝试使用但没有应用它们,并且在控制台中找到了一个.filter
日志.replace
[<html>
...
</html>] does not have a method filter
所以我把这个留了下来。这就是为什么我无法从提供的这个 HTML 中过滤标题。