在本地存储上保存换行符
所以我尝试使用本地存储制作一个简单的便签,您可以在其中输入内容并自动保存。
每当我按下换行符时,我都会遇到问题。本地存储不应用换行符。
HTML:
<div contenteditable="true" class="s_content">Type something, press linebreak and type something again. Then refresh</div>
JS:
$('div.s_content').text(localStorage.getItem ("foo"))
$("div.s_content").on("keyup paste", function () {
localStorage.setItem ("foo", $('div.s_content').text())
});
示例: http://jsfiddle.net/z2e6Y/
尝试输入一些内容,按回车键输入更多内容。然后刷新页面。
如何将
/ line-break
应用于本地存储?
So Im trying to make a simple sticky-note thingy using localstorage where you can type and its saves automatically.
I get a problem when ever I press linebreak. Localstorage doesn't apply the line break.
HTML:
<div contenteditable="true" class="s_content">Type something, press linebreak and type something again. Then refresh</div>
JS:
$('div.s_content').text(localStorage.getItem ("foo"))
$("div.s_content").on("keyup paste", function () {
localStorage.setItem ("foo", $('div.s_content').text())
});
Example: http://jsfiddle.net/z2e6Y/
Try to type something, press return and type something more. Then refresh the page.
How can I apply the <br>
/ line-break
onto localstorage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将两个 .text() 调用更改为 .html() 它应该可以工作:
http://jsfiddle.net /k4dWX/3/
由于您使用的是标签,因此里面的数据是 HTML 而不仅仅是文本。因此,您需要将 div.s_content 的内容设置为带有 br 或 div 标签的 HTML,而不仅仅是换行符。如果您从其他地方提取文本,则需要首先将换行符转换为 br 或 div 标签。
Change both of your .text() calls to .html() and it should work:
http://jsfiddle.net/k4dWX/3/
Since you are using is a tag, the data inside is HTML and not just text. So you need to set the content of div.s_content to HTML with br or div tags, rather than just line breaks. If you are pulling the text from somewhere else, you need to convert linebreaks to br or div tags first.
我知道我有你的问题,
你在 Ajax 调用中保存数据,
像这样传递值,
i thing i got ur question,
Ur saving data in Ajax call,
pass value like this,