我想在X
HTML文档中选择样式表,它不仅包含描述,还包含href.
例如
<link rel="stylesheet" href="123"/>
应该被选中,并且
<link rel="stylesheet"/>
不应该.
目前,我这样做:
foreach (XmlNode n in xml.SelectNodes(@"//link[@rel='stylesheet']")) { if (n.Attributes["href"]==null||n.Attributes[""].Value==null) { continue; } var l = Web.RelativeUrlToAbsoluteUrl(stuffLocation,n.Attributes["href"].Value); }
但我怀疑有更好的方法可以做到这一点.在那儿?