Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 MVC 很陌生,目前我需要在 MVC4 中使用 Razor 引擎开发一个项目。
谁能告诉我
如何在 MVC4 中实现 dropdwonlist 的 SelectedIndex Change 事件的逻辑?
谢谢。
在 MVC 中你不能这样做。你需要使用 jQuery。OnSelectedIndexChange 是 ASP.Net 中使用的一个概念,而 MVC3 则大不相同。如果您想在用户更改 DDL 时实现逻辑,则需要在 DDL 更改时运行 jQuery 函数(onchangehtml 属性),然后将使用 AJAX 的请求传递给页面上的控制器。在此控制器中,您将能够实现此逻辑。
onchange
我建议先熟悉 MVC 的概念。ASP.Net 中的实践很少与 MVC 互换。