无法获取 jHTML 文本区域的 .val?

发布于 2024-11-18 16:07:09 字数 497 浏览 3 评论 0原文

我目前正在尝试创建一个表单。

我添加了一个所见即所得编辑器。我使用的编辑器是jHTML区域。

将 WYSIWG 编辑器应用于文本区域时,使用 jQuery .val 函数获取文本区域的值在 Firefox 中运行时不会返回值。

此过程在 Google Chrome 中有效,但在 Firefox 中无效。

我当前使用的代码是:

$('form#AddPages').submit(function() {
alert($('#PageTextArea').val());
return false;
});
$(function() {
$('.Template_tbl tr td a').lightBox();
$(".txtDefaultHtmlArea").htmlarea(); // Initialize jHtmlArea's with all default     values
});

任何帮助将不胜感激。

谢谢

I'm currently trying creating a form.

I have added a WYSIWG editor. The editor I used was the jHTML area.

When applying the WYSIWG editor to the textarea getting the value of the textarea using the jQuery .val function does not return a value when ran in Firefox.

This process works in Google Chrome but not in Firefox.

The code I am currently using is:

$('form#AddPages').submit(function() {
alert($('#PageTextArea').val());
return false;
});
$(function() {
$('.Template_tbl tr td a').lightBox();
$(".txtDefaultHtmlArea").htmlarea(); // Initialize jHtmlArea's with all default     values
});

Any help would really be appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

把梦留给海 2024-11-25 16:07:09

你可以试试这个: $('#PageTextArea').textarea.val()

you can try this: $('#PageTextArea').textarea.val()

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