为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用jQuery打开引导模式窗口?

如何使用jQuery打开引导模式窗口?

一只甜甜圈 2019-06-29 17:05:39
如何使用jQuery打开引导模式窗口?我正在使用Twitter启动模式窗口功能。当有人在我的表单上单击Submit时,我希望在单击表单中的“Submit”按钮时显示模式窗口。<form id="myform" class="form-wizard">     <h2 class="form-wizard-heading">BootStap Wizard Form</h2>     <input type="text" value=""/>     <input type="submit"/></form><!-- Modal --><div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">     <div class="modal-header">         <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>         <h3 id="myModalLabel">Modal header</h3>     </div>     <div class="modal-body">         <p>One fine body…</p>     </div>     <div class="modal-footer">         <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>         <button class="btn btn-primary">Save changes</button>     </div></div>jQuery:$('#myform').on('submit', function(ev) {     $('#my-modal').modal({         show: 'false'     });      var data = $(this).serializeObject();     json_data = JSON.stringify(data);     $("#results").text(json_data);      $(".modal-body").text(json_data);      // $("#results").text(data);     ev.preventDefault();});
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 594 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信