从表单输入laravel获取div的内容

时间:2014-10-30 18:07:06

标签: php laravel input ckeditor

我在使用CKEditor的laravel(不使用刀片)中有一个表单。当我提交表单时,我正在尝试从名为div的{​​{1}}中获取内容,因为它正在提交博客帖子(因此它也需要从该div中获取格式)。 / p>

我尝试为div分配editorcontents,但没有运气。如何将name用作div字段?

input

1 个答案:

答案 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;
    } )