使用 jquery 或 javascript 从文本框和文本区域获取文本并保存在 cookie 值中
我有一个文本框和一个文本区域。我想保存在该文本框中输入的任何文本,但该文本框位于 Iframe 中。
我如何使用 jquery 或 javascript 做到这一点?
请帮我。
I have one textbox and one textarea. I want to save the text whatever I entered in that textbox but that textbox is in Iframe.
How I do it using jquery or javascript?
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
jQuery.cookie
插件来处理 cookie。其中框架的
myframe
id 和 iframe 内文本框的textboxy
id。Use
jQuery.cookie
plugin to work with cookies.Where
myframe
id of the frame andtextboxid
id of the textbox inside of iframe.window.localStorage 是在 IE8+ 上运行的另一个选项,这是没有 4K 上限的现代浏览器:
window.localStorage is another option working on IE8+, modern browsers without the 4K ceiling: