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.
有没有办法使用 HTML5 存储格式化数据并使用 jQuery 检索它?
<li data-title="description here">My element</li> $('li').data('title');
我说的是简单的换行符和项目符号。
您可以将任何内容放入属性中,包括可在其他地方使用的 HTML - 但是请记住字符<,>和"应分别转义为<,>和 ,"以确保解析器不会遇到任何问题。
<
>
"
<
>
"
如果您在其中有任何特殊字符,则必须使用反斜杠 \ 或使用与该字符等效的 unicode来转义它们