...
<big>似的</big>
...通过IHTMLDOMNode成功得到了big 节点,如何才能得到此节点的内容啊

解决方案 »

  1.   

    IHTMLDOMNode::nodeValue Property--------------------------------------------------------------------------------Sets or retrieves the value of a node.SyntaxHRESULT IHTMLDOMNode::get_nodeValue(VARIANT* p);HRESULT IHTMLDOMNode::put_nodeValue(VARIANT v);
    Parametersp
    Pointer to a variable of type VARIANT of type VT_BSTR or VT_I4 that receives the node value or null.
    v
    VARIANT of type VT_BSTR or VT_I4 that specifies the node value or null.
    Return ValueReturns S_OK if successful, or an error value otherwise. ResIf the object is a TextNode, the IHTMLDOMNode::nodeValue property returns a string representing the text contained by the node.Expressions cannot be used to change the IHTMLDOMNode::nodeValue of a TextNode object.If the object is an attribute object retrieved from the attributes collection, the IHTMLDOMNode::nodeValue property returns the value of the attribute if it has been specified, or null otherwise.If the object is an element, the IHTMLDOMNode::nodeValue returns null. Use the IHTMLDOMNode::nodeName property to determine the element name.See AlsoIHTMLDOMAttribute2::value, Document Object Model--------------------------------------------------------------------------------&copy; 2001 Microsoft Corporation. All rights
      

  2.   

    我也遇到了次问题,总是var返回空。楼上为什么不举列那