这是一个奇怪的问题,我在同一页面上有两个 ckeditor 实例,当我发布表单时,我总是得到第二个的空值。
你能帮我弄清楚我的问题吗?我哪里错了?
以下是详细信息,
创建.cshtml
@model SevenNice.Models.Product
@using (Html.BeginForm("Create", "Product", FormMethod.Post, new { enctype = "multipart/form-data", id = "newproduct" }))
{
// ... some other elements
@Html.TextAreaFor(m => m.Description_0, new { @class = "ckeditor" })
@Html.TextAreaFor(m => m.Description_1, new { @class = "ckeditor" })
// ... some other elements
}
调试步骤
1-
2-