//js:
fetch('http://localhost:8000/cors', { // 目前的端口号是5000,也是localhost,跨域端口号是8000 mode: 'cors' }) .then(res => res.text()) .then(data => { console.log(data); document.body.innerHTML += data; }) .then(err => console.log(err));
//取到的HTML片段
//cors.js
let btn = document.querySelector('input[type=button]'); btn.onclick = function () { let div = document.createElement('div'); div.classList.add('box'); document.body.append(div); console.log(div) };
页面样式和DOM结构出来了,但是js却不生效,有什么办法还原获取到的html原本的js吗?
浮云间
相关分类