fetch('https://www.explinks.com/personal/iframe/bookmark/bus202409262850095b0c47')
.then(response => response.text())
.then(html => {
// 将获取到的 HTML 内容插入到当前页面中的特定位置
const container = document.getElementById('target');
container.innerHTML = html;
})
.catch(error => {
console.error('Error fetching HTML:', error);
});