使用 jquery 或 javascript 从文本框和文本区域获取文本并保存在 cookie 值中

发布于 2024-12-06 18:34:00 字数 111 浏览 1 评论 0原文

我有一个文本框和一个文本区域。我想保存在该文本框中输入的任何文本,但该文本框位于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤芳又自赏 2024-12-13 18:34:00

使用 jQuery.cookie 插件来处理 cookie。

$("#myframe").contents().find('#textboxid').blur(function() {
   $.cookie('textboxvalue', $(this).val()); // for storing
});

其中框架的 myframe id 和 iframe 内文本框的 textboxy id。

Use jQuery.cookie plugin to work with cookies.

$("#myframe").contents().find('#textboxid').blur(function() {
   $.cookie('textboxvalue', $(this).val()); // for storing
});

Where myframe id of the frame and textboxid id of the textbox inside of iframe.

清晰传感 2024-12-13 18:34:00

window.localStorage 是在 IE8+ 上运行的另一个选项,这是没有 4K 上限的现代浏览器:

localStorage['textareaKey'] = $('#textarea').val();

$('#textarea').val(localStorage['textareakey']);

window.localStorage is another option working on IE8+, modern browsers without the 4K ceiling:

localStorage['textareaKey'] = $('#textarea').val();

$('#textarea').val(localStorage['textareakey']);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文