在JavaScript中,要转到另一个页面以获取不在当前页面上的特定信息,可以使用以下方法:
window.open('https://example.com/other-page');
fetch('https://example.com/other-page')
.then(response => response.text())
.then(data => {
// 在这里处理获取到的数据
console.log(data);
})
.catch(error => {
// 处理错误
console.error(error);
});
<iframe src="https://example.com/other-page"></iframe>
以上是获取不在当前页面上的特定信息的几种常见方法。具体使用哪种方法取决于你的需求和场景。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云