2014-03-31 51 views
0

我正在使用WinForm應用程序,在C#框架3.5中。我有一個WebBrowser控件,我呈現動態HTML這樣在WinForm中讀寫動態HTML

webBrowser1.DocumentText = 
     @"<html> 
      <input type=radio name=group1 value=Milk> Milk<br> 
      <input type=radio name=group1 value=Butter> Butter<br> 
      </html>"; 

我寫的兩個選項按鈕,用戶會點擊一個或另一個...

當用戶點擊「OK」,我需要閱讀DocumentText,並實現選項按鈕被點擊的位置。

有可能嗎?

+2

這不是一個完美的比賽,但[這個答案](http://stackoverflow.com/a/ 12058606/3438854)顯示了API的相關部分。所以,是的,這應該是可能的。 –

回答

1

我找到了解決方案..使用ID或輸入對象。在JavaScript中。

webBrowser1.Document.GetElementById( 「ID」)。的getAttribute( 「選中」)