我可以直接发布 contentEditable DIV 的内容吗?我唯一能想到的就是将 innerHtml 复制到一个隐藏的输入元素中,但我确信一定有更直接的方法。
看法:
<div name="typer" id="typer" onclick="eraseFirst();this.contentEditable='true';">
Text here that the user typed, with html elements. How is this posted?
</div>
控制器:
[HttpPost]
public ActionResult BlogPage(BlogsPosts blogsposts)
{
// Is this a good start?
return View(blogsposts);
}