c# – 如何获取HtmlGenericControl的属性值?

前端之家收集整理的这篇文章主要介绍了c# – 如何获取HtmlGenericControl的属性值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我像这样创建HtmlGenericControl:

HtmlGenericControl inner_li = new HtmlGenericControl("li");
inner_li.Attributes.Add("style","list-style-type: none");

我怎样才能得到这个attribue(风格)的价值.

最佳答案
你可以使用索引器来做到这一点:

var style = inner_li.Attributes["style"];

只是旁注:处理样式时最好使用HtmlControl.Style属性

inner_li.Style[HtmlTextWriterStyle.ListStyleType] = "none";
原文链接:https://www.f2er.com/html/426495.html

猜你在找的HTML相关文章