Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试 在 API 文档中设置 wymeditor textarea 的值,以设置或获取该值,给出以下代码;
wym.html("<p>Hello, World.</p>");
但这段代码不起作用。
如何设置 wymeditor textarea 的值?
谢谢。
假设 的值wym是适当的 WYMeditor 实例,那么该代码实际上会起作用。例如,这样的事情会起作用:
wym
jQuery('.my-text-area').wymeditor(); myWym = jQuery.wymeditors(0); myWym.html('<p>initial html</p>');
您也可以在初始化 wymeditor 之前将您想要开始的 HTML 作为文本区域的内容。