有人可以帮我使用textarea
Summernote 的默认名称值吗?编辑器在页面上看起来是正确的(我可以使用界面修改文本)但根据我的理解 POST 不起作用。
我尝试了各种 POST 变量,但它们似乎都不正确。例子summernote
是note-codable
和text-area
。最后两个来自summernote.js。Jquery 不是我有很多经验的东西,所以请帮帮我。
这些是我正在使用的。
$('#summernote').summernote({height: 300});
var sHTML = $('#summernote').code();
和
<div name="summernote" id="summernote"><?php echo $news_body; ?></div>
我还分别尝试了以下几行,试图将 textarea 名称更改为content
:
var sHTML = $('#summernote').code();
$('#summernote').code();
var content = $('textarea[name="content"]').html($('#summernote').code());
$('textarea[name="content"]').html($('#summernote').code());
var sHTML = $('textarea[name="content"]').html($('#summernote').code());
var textareaValue = $("#content").code();
$("summernote").code(html);