我有textarea用户可以输入一些文本,这可以工作,但当他想插入图像时出现问题......
如果他把它放在例如textarea(缩略图(链接)代码)
中#include <iostream>
#define WEBRTC_WIN
#include <webrtc/api/peerconnection.h>
#include <webrtc/api/peerconnectionfactory.h>
#include <webrtc/api/peerconnectioninterface.h>
int main()
{
auto pcf = webrtc::CreatePeerConnectionFactory();
std::cout << "Hallo!" << std::endl;
}
当他点击保存按钮时,它显示相同的img代码,但没有图像...
所以我开始使用ckeditor,但情况是一样的....
所以请告诉我需要什么?
谢谢
答案 0 :(得分:1)
而不是textarea,您可以使用contentEditable。
有关限制和使用情况,请查看报告的链接。
这是一个例子:
<div contenteditable="true">
<a href="http://www.ultraimg.com/image/1V6n"><img src="http://ultraimg.com/images/2016/08/11/1V6n.md.jpg" alt="1V6n.jpg" border="0" /></a>
</div>
&#13;