HtmlDocument-GetElementById没有匹配到相应的节点元素,而是匹配到了DOM里面有与目标id相同的name属性的<meta>标签
HtmlDocument结构:
<html>
<head>
<meta name="description" content="">
</head>
<body>
<div id="description"></div>
</body>
</html>
获取id为description的节点
HtmlElement elem=doc.GetElementById("description");
这里的elem取到的是<meta>标签而不是<div>标签,这是为什么?