我在我的 Intranet 中使用 ckeditor。我用它来保存格式化的文本,例如链接。
问题是,我在 ckeditor 源中拥有的是
<p>
this is the new <a href="http://www.google.com">test</a> we need to run.</p>
我在编辑器中看到的是
test(as a link)
保存在数据库中的是
<p>
this is the new <a href="http://www.google.com">test</a> we need to run.</p>
哪个是对的。
但是当我想在ckeditor上编辑它时,我看到的是
<p> <a href="http://www.google.com">test</a></p>
我看到的来源是
<p>
<a href="http://www.google.com">test</a></p>
我希望在编辑时看到完全相同的内容。
另一件事是,我使用 Html.Raw 在我的索引中显示它,但它向我显示了 html。我想看看渲染的 html。
所以,如果我保存
<p>
this is the new <a href="http://www.google.com">test</a> we need to run.</p>
我想看看
this is the new test(as link) we need to run
并不是
<p>
this is the new <a href="http://www.google.com">test</a> we need to run.</p>
有任何想法吗??瑞马丁斯