C#中的GetElementsByClassName方法

RT…没ID,GetElementsByTagName不适合,干脆把GetElementsByClassName实现了得了…

    public static class Spread
    {
        /// <summary>
        /// 检索指定class的所有HtmlDocument对象
        /// </summary>
        /// <param name="doc"></param>
        /// <param name="className"></param>
        /// <returns></returns>
        public static HtmlElement GetElementsByClassName(this HtmlDocument doc, string className)
        {
            HtmlElementCollection collection = doc.All;
            //HtmlElementCollection collection = doc.Body.All;
            HtmlElement html = doc.CreateElement("");

            foreach (HtmlElement he in collection)
            {
                if (he.GetAttribute("classname") == className)
                {
                    html.AppendChild(he);
                }
            }
            return html;
        }
    }

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据