我正在使用“Select2 Jquery”插件。对于下拉选择表单项,它会在“选择”项目中进行搜索,如果找不到任何结果,会返回一个值,如下所示:
$("#PROJECTID").select2({
allowClear: true,
minimumInputLength: 4,
**formatNoMatches: function () { return "no such a value"; },**
});
我试图在返回值中显示部分视图。我正在使用ASP.net MVC框架。如何调用操作或将部分视图显示为返回值?
问候。
答案 0 :(得分:1)
只需使用jQuery load
函数调用返回部分视图的操作。
// select whatever container you plan to load the Partial View into
$('your selector').load(@Url.Action("YourAction", "YourController"));
如果您已经设置了操作方法来返回部分视图而不是所需的全部内容。