将评论文本区域替换为 contenteditable 并解析内容
我正在为网页制作一个新的评论表单,并且刚刚配置了一个基于 jQuery 的 contenteditable 来支持文本格式设置。
唯一的问题是我找不到一种方法来解析它的内容并将其发送到 WordPress,就像它来自 textarea#comment 一样。
有谁知道这个问题的解决方案/解决方法?
I'm making a new comment form for a web page and I've just configured a jQuery-based contenteditable to support text formatting for this.
The only problem is that I can't find a way to parse the content of it and send it to WordPress as if it was from the textarea#comment.
Does any one know a solution/workaround for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够将 contenteditable 元素的内容复制到隐藏的 #comment 字段 onblur,并将其发布到评论操作页面。
You should be able to copy the contents of the contenteditable element to a hidden #comment field onblur, and post that to the comment action page.