您好,我在ASP.NET MVC4应用程序中使用Bootstrap v3.3.6来使用模式视图显示弹出窗口。
我的模式示例:
<div class="modal-contents modal-view content-wrapper">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body content-wrapper">
</div>
</div>
<script type="text/javascript">
$(function () {
$('#approve-btn').click(function () {
$('#modal-container').modal('hide');
});
});
</script>要加载模式,我使用Html.ActionLink,如下所示
@Html.ActionLink("SomeText", "SomeAction", "SomeController", null , new { @class="modal-link"})这会触发我的_Layout页面中的脚本:
<script type="text/javascript">
$(function () {
// Initialize modal dialog
// attach modal-container bootstrap attributes to links with .modal-link class.
// when a link is clicked with these attributes, bootstrap will display the href content in a modal dialog.
$('body').on('click', '.modal-link', function (e) {
e.preventDefault();
$(this).attr('data-target', '#modal-container');
$(this).attr('data-toggle', 'modal');
console.log(this);
});
// Attach listener to .modal-close-btn's so that when the button is pressed the modal dialog disappears
$('body').on('click', '.modal-close-btn', function () {
$('#modal-container').modal('hide');
});
//clear modal cache, so that new content can be loaded
$('.modal').on('hidden.bs.modal', function () {
$(this).removeData('bs.modal');
});
$('#CancelModal').on('click', function () {
return false;
});
});
</script>最后是我的_Layout中的占位符
<div id="modal-container" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-content modal-view">
</div>
</div>这一切都是基于这一点设计的:http://www.codeproject.com/Tips/826002/Bootstrap-Modal-Dialog-Loading-Content-from-MVC-Pa,并且运行良好。直到我在同一视图中已经打开了一个模式之后,才尝试打开一个模式。然后,我会找到包含与之前相同的数据的模型。
在尝试了来自以下网站的所有建议后:
Reload content in modal (twitter bootstrap)
我有一种感觉,问题是重新填充了#modal container。这些链接是由脚本以正确的方式完成的,正如我可以通过在chrome中调试所说的那样。
如果我重新加载整个页面,模式视图将接受新内容。但是因为我使用标签(也依赖于Bootstrap),所以不能重新加载,因为我会丢失当前的标签选择。
我对web开发非常陌生,所以如果你有一些想法,那就太好了。
发布于 2016-04-13 22:22:58
您可以使用
ModelState.Clear();用于清除控制器中的模型状态。
希望能对你有所帮助。
https://stackoverflow.com/questions/36601160
复制相似问题