将值设置为 nicedit - 它使用 textarea 作为实例

发布于 2024-10-20 03:43:55 字数 565 浏览 1 评论 0原文

这是链接,您的网络浏览器将导航到: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可是我不能没有你 2024-10-27 03:43:55

我知道这是一个非常古老的问题,但如果您还没有在这里找到答案,那就是:

nicEditors.findEditor( "your-textarea-id" ).setContent( 'some value' );

I know this is a very old question but in case you haven't yet found the answer here it is:

nicEditors.findEditor( "your-textarea-id" ).setContent( 'some value' );
你与昨日 2024-10-27 03:43:55

我想你会在这里找到你需要的东西: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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文