S
sth2007
Unregistered / Unconfirmed
GUEST, unregistred user!
//strHtml : html源代码;
//TagName : 节点名称
//AttrName : 节点属性名称
//AttrValue : 节点属性值
//outItems : 匹配节点输出, 每行一个匹配节点
procedure xQuery(strHtml, TagName, AttrName, AttrValue: string; outItems: TStringList);
比如html代码如下, 现在要取得TagName=div, AttrName=id, AttrValue=content1节点(就是<div id="content1">...</div>)的源代码, 该如何实现?
另外如果参数AttrName或者AttrValue为空, 则表示匹配所有!
谢谢!
<body>
<div id="content1">
<div>
</div>
<div>
</div>
<div>
</div>
</div>
<div id="content2">
<div>
</div>
<div>
</div>
<div>
</div>
</div>
</body>
//TagName : 节点名称
//AttrName : 节点属性名称
//AttrValue : 节点属性值
//outItems : 匹配节点输出, 每行一个匹配节点
procedure xQuery(strHtml, TagName, AttrName, AttrValue: string; outItems: TStringList);
比如html代码如下, 现在要取得TagName=div, AttrName=id, AttrValue=content1节点(就是<div id="content1">...</div>)的源代码, 该如何实现?
另外如果参数AttrName或者AttrValue为空, 则表示匹配所有!
谢谢!
<body>
<div id="content1">
<div>
</div>
<div>
</div>
<div>
</div>
</div>
<div id="content2">
<div>
</div>
<div>
</div>
<div>
</div>
</div>
</body>