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.
假设我在一个 div 中有一些 html 内容,我从某个地方复制了这些内容。现在当我使用 -:
var text = $("div#myDiv").text()
它删除所有换行符和任何其他制表符或空格。我怎样才能保存它们。
当您需要这样做时,请使用 .html() 而不是 .text()
您可以尝试这样做来保留行:
var item = document.getElementById("myDiv"); var text = item.innerText || item.textContent;