html中select便签根据枚举获得的总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html中select便签根据枚举获得的总结相关的知识,希望对你有一定的参考价值。

先po一段在网上找的代码,获取C#枚举中的描述值的:

  /// <summary>
        /// 获取描述信息
        /// </summary>
        /// <param name="en">枚举</param>
        /// <returns></returns>
        public static string GetEnumDes(Enum en) {
                Type type = en.GetType();
                MemberInfo[] memInfo = type.GetMember(en.ToString()); 
                if (memInfo != null && memInfo.Length > 0)
                {
                        object[] attrs = memInfo[0].GetCustomAttributes(typeof(System.ComponentModel.DescriptionAttribute), false);
                        if (attrs != null && attrs.Length > 0)
                        return ((DescriptionAttribute)attrs[0]).Description;
                }           
                return en.ToString(); 
       }

 

以上是关于html中select便签根据枚举获得的总结的主要内容,如果未能解决你的问题,请参考以下文章

jquery怎么根据value来动态选中select下的option

小土豆便签

总结Java中反射+枚举+Lambda表达式

如何根据“枚举”列获得分类的 laravel 雄辩结果并在一页中显示?

ios UIWebView截获html并修改便签内容

一、Shader基础:8、像素片元里的基本操作总结