我在使用CKEditor的laravel(不使用刀片)中有一个表单。当我提交表单时,我正在尝试从名为div
的{{1}}中获取内容,因为它正在提交博客帖子(因此它也需要从该div中获取格式)。 / p>
我尝试为div分配editorcontents
,但没有运气。如何将name
用作div
字段?
input
答案 0 :(得分:1)
尝试使用jQuery中的ajax来获取 editorcontents 的html内容并将其发布到服务器中的控制器:) ...我希望这有帮助
HTML
<div id="editorcontents" name="editorcontents">
</div>
Jquery的
var inputValue = $("#editorcontents").html;
$.ajax( {
type : "POST",
cache : false,
async : true,
global : false,
url : "URL POST DATA",
data : {
editorcontents : escape(inputValue),
}
} ).done( function ( data )
{
//Handle event send done;
} )