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.
我将控件列表传递到视图中(例如,诸如控件 ID、控件类型、是否为必填字段等信息),然后将通过视图或通过 jQuery 构建它们...但我想知道如果 html 控件是从 jQuery 构建的,它是否会更有效率?
干杯。
但我想知道如果 html 控件是从 jQuery 构建的,它是否会更有效率?
不,使用 ASP.NET MVC 视图并使用从控制器传递到视图的视图模型在服务器上构建这些控件会更有效。
如果您想稍后在客户端上动态添加/删除控件,那么是的,jQuery 将是一个不错的选择。