获取 javascript 渲染页面的 html(与其交互后)

2022-01-24 00:00:00 state save javascript html

I would like to be able to save the state of the html page after I've interacted with it.

Say I click a checkbox, or the javascript set the values of various elements.

How can I save the "javascript-rendered" page?

Thanks.

解决方案

That should do and will grab the ALL page not just the body

console.log(document.getElementsByTagName('html')[0].innerHTML);

相关文章