Jquery Html将数据编码为cookie
我正在使用 jQuery cookieplugin,并且想要将 CKEditor 中的值保存到 cookie 中,以便能够制作一个草稿函数,与 StackOverflow 上的有点相似。
CKEditors 内容可以包含 html,那么有没有办法使用 jQuery 对 HTML 数据进行 htmlencode,以便可以将其传递给 cookie?
I am using the jQuery cookieplugin, and want to save the values from a CKEditor into a cookie, to be able to make a draftfunction, a bit similar to the one on StackOverflow.
The CKEditors content can contain html, so is there a way to htmlencode the HTML-data with jQuery, so it can be passed to a cookie?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 encodeURIComponent() 和 decodeURIComponent()
Use encodeURIComponent() and decodeURIComponent()