如何在 JavaScript 中使用 C# 枚举值
我有一个 C# 枚举,例如 Category.cs。
在下拉列表中,我们绑定值。
因此,如果用户在下拉列表中选择某个特定值,它将隐藏一个 div。
所以我想获取javascript中的枚举值,即想将枚举值与javascript中的一个选定值进行比较。
马赫什
I have got an enumeration in C# ie something like Category.cs.
In a dropdownlist we are binding values.
So if the user selects some specific value in dropdown it will hide one div.
So i want to get the enumeration value in javascript ie want to compare the enumeration value with one selected value in javascript.
Mahesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您有这样的带有数值的
enum
:首先,在后面的代码(Page_Load 事件)中注册 JavaScript 代码,该代码将构建保存相同数据的客户端结构:
现在
arrColors 是 JS 变量,包含
enum
的键和值。要使用它,请使用以下代码:
下拉列表应如下所示:
Suppose you have such
enum
with numeric values:First of all, in the code behind (Page_Load event) register JavaScript code that will build client side structure that hold the same data:
Now
arrColors
is JS variable with both keys and values of yourenum
.To use it, have such code for example:
And the drop down should look like this:
System.Enum.GetNames(typeof(yourenumerationtype))
- 返回一个字符串数组,它表示枚举项的名称System.Enum.GetNames(typeof(yourenumerationtype))
- returns an array of strings, which represents enumeration items' names