天天看点

关于在Winform中设置,获取fckeditor 的值

获取值:

 wbContent.Document.InvokeScript("test");

            // wbContent.Document.GetElementById("submit").InvokeMember("onClick");

            MessageBox.Show(wbContent.Document.GetElementById("test2").GetAttribute("value"));

设置值:

 wbContent.Document.GetElementById("FCKeditor1").SetAttribute("value", "jiaqi");

继续阅读