码迷,mamicode.com
首页 >  
搜索关键字:modal    ( 862个结果
Javascript - ExtJs - Window组件
Ext.create("Ext.window.Window", { id: "AuthorizationWin", title: "正在编辑……", autoShow: true, modal: true,//设置是否添加遮罩 layout: "anchor", width:600, height: ...
分类:编程语言   时间:2017-09-01 21:22:31    阅读次数:167
这里ajax需要改成同步
var flag = true; var title = $("#modal").find("input[name=groupname]").val(); /*获取分组列表*/ $.ajax({ method: 'get', url: '/groups/... ...
分类:Web程序   时间:2017-08-29 12:54:59    阅读次数:251
ajax及模态框
//修改$("#eventList").on("click",".btn-edit",function () { var _id = $(this).parent().data("id"); var model_id = $("#resBox").find(".list-modal").find(" ...
分类:Web程序   时间:2017-08-25 14:53:34    阅读次数:202
bootstrap3-iframe-modal子页面在父页面显示模态框
本文灵感来自:http://www.cnblogs.com/chengxuyuanzhilu/p/5132328.html 子页面内容 子页面modal 绑定子页面触发按钮 ...
分类:其他好文   时间:2017-08-21 18:14:34    阅读次数:293
custombox.js 插件如何点空白处不隐藏弹出框 overlayClose属性的应用
bootstrap中使用了custombox.js 插件,如下代码 <button href="/systems/application/add" data-target="custom-modal" type="button" class="btn_common btn-success waves ...
分类:Web程序   时间:2017-08-20 16:49:55    阅读次数:209
Bootstrap 模态框(Modal)插件数据传值
原文:http://blog.csdn.net/baalhuo/article/details/51178154 模态框具体代码如下: 单击编辑图标时触发模态框,并将此行数据传入模态框。 传入后如下: 具体传值方法如下 ...
分类:其他好文   时间:2017-08-18 19:55:46    阅读次数:1341
bootstrap modal垂直居中(简单封装)
未封装前: 封装后: ...
分类:其他好文   时间:2017-08-12 17:04:38    阅读次数:175
js学习之--Bootstrap Modals(模态框)
http://www.runoob.com/bootstrap/bootstrap-v2-modal-plugin.html http://outofmemory.cn/bootstrap/tutorial/bootstrap-modal-plugin.html http://www.runoob. ...
分类:Web程序   时间:2017-08-12 10:17:29    阅读次数:169
weex stream 之fetch的get、post获取Json数据
无论何种平台,网络数据的获取都是十分重要的,最近学习weex,不可避免的要学习weex的数据请求方法了。网址 个人感觉,weex stream相较于其他平台,还算比较简单了,但是由于文档以及官方代码中的错误,导致网络请求很难获取到自己想要的数据,再次简单记录一下遇到的坑。 一、获取modal,str ...
分类:Web程序   时间:2017-08-07 15:19:19    阅读次数:1891
按回车键确定
$("#modal").keydown(function(e){ var e = e || event, keycode = e.which || e.keyCode; if (keycode==13) { $(".btn-primary").trigger("click"); } ... ...
分类:其他好文   时间:2017-08-07 11:45:01    阅读次数:129
862条   上一页 1 ... 31 32 33 34 35 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!