<table class="panel" width="100%" border="0"  cellPadding="1" cellspacing="1">
  <tr >
  <td valign="middle"  class="navbar" width="450">
     <!--<a href="http://check"><img src="img/check.gif"></a>
 <a href="http://uncheck"><img src="img/uncheck.gif"></a> -->
 <input name="checkchoice" type="radio" value="1" checked>订单审核通过
 <input name="checkchoice" type="radio" value="2">订单取消......
CComBSTR tagName;
pElem->get_tagName(&tagName);
CString str=(CString)tagName;
str.MakeUpper();
if(str=="TABLE")
{
   IHTMLTable* pTable=NULL;
   pElem->QueryInterface(IID_IHTMLTable,(LPVOID*)&pTable);
......
我已经做到这一步,就是找到这个表格了,如果在枚举出表格中每个元素呢?
最后应该是这样:IHTMLInputButtonElement* pButton;
hr = pDisp2->QueryInterface(IID_IHTMLInputButtonElement, (void **)&pButton);
if(SUCCEEDED(hr))
{谢谢