作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为我的 Bootstrap 弹出窗口创建一个ajax.actionlink,如下所示,但在弹出窗口中打开它,它重定向到一个表示 Controller /操作的网址
我的代码如下
@Ajax.ActionLink("CheckOut", "CheckOut", "Home", null, new AjaxOptions
{
HttpMethod = "Post",
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "myModal"
}, new
{
@class = "btn btn-primary btn-lg",
@id = "chkOut"
})
$(document).ready(function () {
$("#chkOut").attr('data-toggle', 'modal')
});
最佳答案
使用 Ajaxoptions 的 OnComplete 属性,如下所示:
@Ajax.ActionLink("CheckOut", "CheckOut", "Home", null, new AjaxOptions
{
HttpMethod = "Post",
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "myModal",
OnComplete = "ShowPopup",
}, new
{
@class = "btn btn-primary btn-lg",
@id = "chkOut"
})
这是在完成 ajax 操作调用链接时调用的函数:
function ShowPopup()
{
$("#chkOut").attr('data-toggle', 'modal');
}
关于jquery - 如何在 ajax.action 链接上打开 Bootstrap 模式弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23110787/
我是一名优秀的程序员,十分优秀!