无法获取 jHTML 文本区域的 .val?
我目前正在尝试创建一个表单。
我添加了一个所见即所得编辑器。我使用的编辑器是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以试试这个:
$('#PageTextArea').textarea.val()
you can try this:
$('#PageTextArea').textarea.val()