将值设置为 nicedit - 它使用 textarea 作为实例
这是链接,您的网络浏览器将导航到:http://thocong.net/dang-tin.html< /a>
我正在开发一个应用程序,它将自动发布新闻。 当为网页上的控件设置值时,所有控件都可以,但我无法为编辑器(NicEdit)设置值。该编辑器使用 TextArea 标签作为实例。我已经为textarea设置了值,但是当发布新闻时,我找不到设置为此textarea的内容。 所以,请帮我解决这个问题。
下面是我用来为网页上的控件设置值的代码(上面的链接)
HtmlDocument document = webBrowser.Document;
HtmlElement description = document.GetElementById("content");//id of textarea
description .SetAttribute("value", info.Content);
->>摘要:请告诉我如何为漂亮的编辑器设置值?
Here is the link, your webbrowser will navigate to: http://thocong.net/dang-tin.html
I'm developing an app, which will auto post news.
When setting value to controls on webpage, all controls are ok, but i cannot to set value to editor (NicEdit). This editor used TextArea tags as instance. I had set value to textarea, but when the news is posted I cannot find contents that set to this textarea.
So, pls help me to solve this issue.
Below are codes i'm using to set value to controls on webpages (above link)
HtmlDocument document = webBrowser.Document;
HtmlElement description = document.GetElementById("content");//id of textarea
description .SetAttribute("value", info.Content);
->> Summary: Pls tell me How to set values to nice editor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道这是一个非常古老的问题,但如果您还没有在这里找到答案,那就是:
I know this is a very old question but in case you haven't yet found the answer here it is:
我想你会在这里找到你需要的东西:http://pastebin.com/sj8QA4xx - 它展示了如何get 使用 nicEditor 的 API 在当前光标位置插入文本。我成功地使用它以编程方式修改 nicEditor 的内容。祝你好运!
I think you'll find what you need here: http://pastebin.com/sj8QA4xx - it shows how to get use nicEditor's API to insert text at the current cursor location. I am using it successfully to programatically modify a nicEditor's contents. Good luck!