用正则匹配, 如果标签是 符合xml的话,可以转成xml,再操作
XElement xe = XElement.Parse("字符串"); IEnumerable<string> bigimgValues = xe.DescendantsAndSelf().Where(w => w.Attribute("bigimg") != null).Select(s => s.Attribute("bigimg").Value); // ("bigimg");
$(".conyouhui").attr("bigimg")
你这是在前台得到的。
@Lekko.Li: 脑筋不要这么死嘛,前台的值复制给HiddenField控件,然后再提交上来,后台不就可以得到咯
这个也太好说了 正则直接搞定
正则直接搞定
http://htmlagilitypack.codeplex.com/