使用MVC

时间:2018-11-28 19:36:19

标签: asp.net-mvc bootstrap-modal

我有一个带有Bootstrap的ASP.net MVC 5页面,其中显示了许多记录的表。当我单击每行上的某个按钮时,我会打开一个弹出窗口,基本上是一些CRUD。这很好。

我现在想做的是,当用户输入特定的URL(例如site / Proof / LoadSpecific / 342)以照常打开页面时,还要显示模式,就像单击特定按钮一样。< / p>

我对MVC,JQuery和Web总体上还很陌生。我该怎么办?

谢谢

1 个答案:

答案 0 :(得分:0)

如果您正在使用引导程序模态,则可以使用以下功能(假设您还包含了引导程序js和jquery脚本)

假设myModal是模态元素的id

$('#myModal').modal('toggle'); //toggles the shown/hidden state of the modal
$('#myModal').modal('show');  //shows the modal
$('#myModal').modal('hide');  //hides the modal

因此您将在页面上包含一个脚本,该脚本显示加载时的引导程序模式,如下所示:

$(function() {
    $('#myModal').modal('show');
});

这是bootstrap 3.3文档的link,其中包含有关这些组件以及如何使用它们的大量信息。