我需要在我的页面中弹出一个ajax的success函数中的引导模式。success函数是在提交表单时调用的。所以有没有什么方法可以在没有按钮点击的情况下弹出引导模式。我是一个菜鸟。请在这里帮帮我。这是我的ajax调用..
$("#form").submit(function(e)
{
$.ajaxSetup({
headers:{'X-CSRF-Token' : $('meta[name=_token]').attr('content')}
});
e.preventDefault(); //STOP default action
var postData = $(this).serializeArray();
console.log(postData);
var formURL = "http://localhost:8000/v1/people_roles";
$.ajax(
{
url :formURL ,
type: "POST",
data : postData,
success:function(response, textStatus, jqXHR)
{
if(response.parent==1)
{
$("#getCode").html(response);
$("#getCodeModal").modal('show');
window.location.href="/web/staff/detail.php?id="+response.people_id;
}
else
{
//console.log(response);
window.location.href="/web/staff/detail.php?id="+response.people_id;
}
}
});
});
这是我的html模式代码..
<div class="modal fade" id="getCodeModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p><strong>Lorem Ipsum is simply dummy</strong> text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-white" ng-click="cancel()">Close</button>
<button type="button" class="btn btn-primary" ng-click="ok()">Save changes</button>
</div>
</div>
</div>
</div>
$(“#GetCodeModal”).modal(“show”);
您可以参考这篇文章获得更多信息:如何使用jQuery打开引导模式窗口?
如何在单击OKY到JavaScript确认后打开引导模式? 我的代码:
问题内容: 我正在用JavaScript编写一些代码。在这段代码中,我想读取一个json文件。该文件将从URL加载。 如何在JavaScript的对象中获取此JSON文件的包含? 例如,这是我的JSON文件,位于: 我想像这样在我的文件中使用它: 问题答案: 这是一个不需要jQuery的示例: 称呼为:
我使用了,但对于当前的问题,它没有帮助。我希望能够创建特定于项目的包: 我尝试了多种方法,但如何获得
在我的应用程序中,点击提交按钮(Struts),执行一个操作类方法,该方法设置bean的“更新网址”属性。我想要的是我需要在设置bean完成后在新浏览器中打开的网址,而用户不必做任何其他事情,比如单击链接。我找不到做这件事的正确方法。 下面是一些代码: 我的JSP:
不久前,在Android Studio之外有一个外部AVD Manager应用程序。在某个时候,它被移除了。有了AS 4.0(或者3.x),有没有办法在没有Studio的情况下启动现有的AVD? 我指的不是Bluestacks等第三方模拟器,而是我用于开发的模拟器。