我试图在一个 asp mvc 站点上使用 YUI 富文本编辑器我正在使用这个 javascript 代码
var myEditor = new YAHOO.widget.Editor('Body', {
height: '300px',
width: '522px',
dompath: true, //Turns on the bar at the bottom
animate: true //Animates the opening, closing and moving of Editor windows
});
myEditor.render();
``
在这个文本区域
<div class="yui-skin-sam">
@Html.TextAreaFor(model => model.Body, new { cols = "50", rows = 10 })
@Html.ValidationMessageFor(model => model.Body)
</div>
编辑器加载,但是当我提交表单时它的内容没有被传递,我不断收到一条验证消息,说如果没有任何内容,我应该需要该字段。
有谁知道我怎样才能让它按我想要的方式工作?