Ext.create("Ext.window.Window", { id: "AuthorizationWin", title: "正在编辑……", autoShow: true, modal: true,//设置是否添加遮罩 layout: "anchor", width:600, height: ...
分类:
编程语言 时间:
2017-09-01 21:22:31
阅读次数:
167
var flag = true; var title = $("#modal").find("input[name=groupname]").val(); /*获取分组列表*/ $.ajax({ method: 'get', url: '/groups/... ...
分类:
Web程序 时间:
2017-08-29 12:54:59
阅读次数:
251
//修改$("#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
本文灵感来自:http://www.cnblogs.com/chengxuyuanzhilu/p/5132328.html 子页面内容 子页面modal 绑定子页面触发按钮 ...
分类:
其他好文 时间:
2017-08-21 18:14:34
阅读次数:
293
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
原文:http://blog.csdn.net/baalhuo/article/details/51178154 模态框具体代码如下: 单击编辑图标时触发模态框,并将此行数据传入模态框。 传入后如下: 具体传值方法如下 ...
分类:
其他好文 时间:
2017-08-18 19:55:46
阅读次数:
1341
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,不可避免的要学习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