我有以下CSS
h1:before {
content: "Chapter " counter(lvl1) "\000d\000a";
counter-increment: lvl1;
white-space: pre-wrap;
}
h1 {
page-break-before: right;
}
和这个 HTML
<p>...</p>
<h1>A Title</h1>
<p>...</p>
使用给定的CSS,我得到类似
Chapter 1
A Title
当我尝试使用 jQuery 获取文本时,我得到“A Title”。是否有可能获得“Chapter 1\nA Title”?
谢谢