Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从网络检查器复制一些 html 代码,但一次只能复制一行。有没有办法选择一个元素块或所有元素?
如果您右键单击 Web Inspector 中的任何元素,然后在出现的弹出菜单上单击“复制为 HTML”,您就可以将该元素(以及所有包含的元素)的 html 粘贴到您的编辑器中。<html>您可以通过对元素执行此操作来获取整个文档。
<html>
在控制台上,尝试 document.documentElement.outerHTML。
您可以从 Chrome 的网络部分查看 html 响应