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.
有没有办法使用javascript发送自己网页的完全生成的html代码。例如,在按钮单击事件中,将页面的当前 html 代码发送回服务器。这个怎么做?
使用 jQuery,这应该为您做到这一点:
$("html").html()
如果你真的需要 HTML 标签:
function getPageHTML() { return "<html>" + $("html").html() + "</html>"; }
甚至:
$('html')[0].outerHTML
您可以通过这种方式访问源代码
document.documentElement.outerHTML/innerHTML
REF: 如何从页面获取 HTML 源代码?
快乐编码:)