这是一个奇怪的问题,我在同一页面上有两个ckeditor实例,当我发布表单时,我总是得到第二个的空值。
你能帮我解决一下我的问题吗?我哪里错了?
以下是详细信息,
@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 -
答案 0 :(得分:2)
这是CKEditor 4.2中的一个错误: https://dev.ckeditor.com/ticket/10689
应该在下一个版本中修复它。同时,您可以在本地应用补丁或恢复为旧版本。