- 注册时间
- 2013-5-3
- 最后登录
- 2024-11-20
- 阅读权限
- 150
- 积分
- 32966
- 精华
- 0
- 帖子
- 14366
|
- <style>
- span.mini-tools-add
- {
- width:16px;height:16px;
- background:url(add.gif) no-repeat;
- }
- span.mini-tools-edit
- {
- width:16px;height:16px;
- background:url(edit.gif) no-repeat;
- }
- span.mini-tools-remove
- {
- width:16px;height:16px;
- background:url(remove.gif) no-repeat;
- }
- </style>
- var miniOpen = function (url, width, height, onload, ondestroy) {
- return mini.open({
- url: url,
- width: width,
- height: height,
- buttons: "close collapse add edit remove",
- onbuttonclick: function (e) {
- alert(e.name);
- },
- onload: onload,
- ondestroy: ondestroy
- })
- }
复制代码 |
|