我必须编写 C# 代码来显示和隐藏 MVC3 中的 div,用于基于 C# 中的 switch case 的各种控件。如何在不使用 JQuery Show 或 hide 的情况下完成..但在完全服务器端..?
问问题
29698 次
3 回答
11
将您的 switch 语句直接添加到您的 .cshtml 文件中。到那时,这一切都将是服务器端的。
控制器:
public ActionResult Page()
{
string data = "value1";
return View(data);
}
CSHTML:
@model string; // this should be the Type your controller passes
<div>some html content</div>
@switch(Model) // Model is how you access your passed data
{
case "value1":
<div>...</div>
break;
case "value2":
<div>...</div>
break;
}
<div>more html content</div>
于 2013-03-07T04:42:15.430 回答
0
W3c 有一篇关于逻辑条件的文章
使用此示例
@switch(value)
{
case "YourFistCase":
<div>Login</div>;
break;
case "YourSecondeCase":
<div>Logout</div>;
break;
}
或查看示例
// Use the @{ } block and put all of your code in it
@{
switch(id)
{
case "test":
// Use the text block below to separate html elements from code
<text>
<h1>Test Site</h1>
</text>
break; // Always break each case
case "prod":
<text>
<h1>Prod Site</h1>
</text>
break;
default:
<text>
<h1>WTF Site</h1>
</text>
break;
}
}
于 2013-03-07T04:52:00.227 回答
-2
为什么你使用switch语句?
你喜欢if条件???
为了
<% if(CheckYourCondition){ %>
<div class="TestClass">
Test
</div>
<% } %>
于 2013-03-07T04:59:27.843 回答