ImageVerifierCode 换一换
格式:DOCX , 页数:38 ,大小:29.08KB ,
资源ID:21351754      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/21351754.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(jQuery+easy+UI+APIWord格式.docx)为本站会员(b****5)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

jQuery+easy+UI+APIWord格式.docx

1、).tabs(options);To add a tab panel:).tabs(add, title:New Tab, content:Tab Body closable:true);DependenciesnoneOptionsTabs ContainerOverride defaults with $.fn.tabs.defaults.PropertiesNameTypeDescriptionDefaultwidthnumberThe width of tabs container.autoheightThe height of tabs container.idSeedThe bas

2、e id seed to generate tab panels DOM id attribute.plainbooleanTrue to render the tab strip without a background container image.falsefitTrue to set the size of tabs container to fit its parent container.borderTrue to show tabs container border.scrollIncrementThe number of pixels to scroll each time

3、a tab scroll button is pressed.100scrollDurationThe number of milliseconds that each scroll animation should last.400EventsParametersonLoadargumentsFires when an ajax tab panel finish loading remote data. arguments is same as the callback funtion success of jQuery.ajax.onSelecttitleFires when user s

4、elect a tab panel.onCloseFires when user close a tab panel.MethodsParameterresizeResize the tabs container and do layout.addoptionsAdd a new tab panel, the options parameter is a config object, see tab panel properties for more details.closeClose a tab panel, title parameter indicate which panel to

5、be closed.selectSelect a tab panel.existsIndicate if the special panel is exists.Tab PanelidstringThe tab panel DOM id attribute.nullThe tab panel title text.contentThe tab panel content.hrefA URL to load remote content to fill the tab panel.cacheTrue to cache the tab panel, valid when href property

6、 is setted.iconAn icon CSS class to show on tab panel title.closableWhen set to true, the tab panel will show a closable button which can click to close the tab panel.selectedWhen set to true, tab tab panel will be selected.The width of tab panel.The height of tab panel.Usage Draggabledd100px;border

7、:1px solid #ccc;titlebackground:#ccc;title#dd).draggable(options);Override defaults with $.fn.draggable.defaults.handleselectorThe handle that start the draggable.disabledTrue to stop draggable.edgeThe drag width in which can start draggable.axisDefines the axis which the dragged elements moves on,

8、available value is v or h, when set to null will move across and direction.onStartDrageFires when the target object start dragging.onDragFires during dragging. Return false will not do dragging actually.onStopDragFires when the dragging stops.Resizable Usage Resizablerr#rr).resizable(options);Overri

9、de defaults with $.fn.resizable.defaults.True to disable resizing.handlesIndicate the direction of resizable,n is the north,e is the east,etc.n, e, s, w, ne, se, sw, nw, allminWidthThe minimum width when resizing.10minHeightThe minimum height when resizing.maxWidthThe maximum width when resizing.100

10、00maxHeightThe maximum height when resizing.The edge of border to be resized.5onStartResizeFires when start resizing.onResizeFires during resizing. When return false, the DOM element will not acts actual resize action.onStopResizeFirest when stop resizing.Panel Usage PanelMany panel properties can b

11、e defined in markup.p title=My Panel collapsible=10px; Panel ContentTo create a panel#p).panel(options);To create a panel with custom tools).panel( My Panel tools: iconCls:icon-new handler:function()alert(new) ,icon-savesave To move panel to other position).panel(move left:100, top:Override defaults

12、 with $.fn.panel.defaults.The title text to display in panel header.iconClsA CSS class to display a 16x16 icon in panel.Set the panel width.Set the panel height.leftSet the panel left position.topSet the panel top position.clsAdd a CSS class to the panel.headerClsAdd a CSS class to the panel header.

13、bodyClsAdd a CSS class to the panel body.styleobjectAdd a custom specification style to the panel.When true to set the panel size fit itDefines if to show panel border.doSizeIf set to true,the panel will be resize and do layout when created.collapsibleDefines if to show collapsible button.minimizabl

14、eDefines if to show minimizable button.maximizableDefines if to show maximizable button.Defines if to show closable button.toolsarrayCustom tools, every tool can contain two properties: iconCls and handlercollapsedDefines if the panel is collapsed at initialization.minimizedDefines if the panel is m

15、inimized at initialization.maximizedDefines if the panel is maximized at initialization.closedDefines if the panel is closed at initialization.A URL to load remote data and then display in the panel.loadingMessageWhen loading remote data show a message in the panel.LoadingFires when remote data is l

16、oaded.onBeforeOpenFires before panel is opened.onOpenFires after panel is opened.onBeforeCloseFires before panel is closed.Fires after panel is closed.onBeforeDestroyFires before panel is destroyed.onDestroyFires after panel is destroyed.onBeforeCollpaseFires before panel is collapsed.onCollapseFire

17、s after panel is collpased.onBeforeExpandFires before panel is expanded.onExpandFires after panel is expanded.width, heightFires after panel is resized. the new outer width the new outer heightonMoveleft,topFires after panel is moved.left: the new left postiontop: the new top positiononMaximizeFires

18、 after the window has been maximized.onRestoreFires after the window has been restored to its original size.onMinimizeFires after the window has been minimized.Return options property.panelReturn the panel object.headerReturn the panel header object.bodyReturn the panel body object.setTitleSet the t

19、itle text of header.openforceOpenWhen forceOpen parameter set to true, the panel is opened bypass the onBeforeOpen callback.forceCloseWhen forceClose parameter set to true, the panel is closed bypass the onBeforeClose callback.destroyforceDestroyWhen forceDestroy parameter set to true, the panel is

20、destroyed bypass the onBeforeDestroy callback.refreshRefresh the panel to load remote data when href property is setted.Set panel size and do layout. The options object contains following properties: the new panel width the new panel height the new panel left position the new panel top positionmoveM

21、ove the panel to a new position. The options object contains following properties:Accordion Usage Accordionaa300px;200px;Title1icon-saveh3 style=color:#0099FF;Accordion for jQuerypAccordion is a part of easyui framework for jQuery. It lets you define your accordion component on web page more easily.Title2 selected= content2Title3 content3#aa).accordion(options); panel Container OptionsThe width of accordion container.The height of accordion container.Set to true to set the accordion container size fit itDefines if to show the border.Panel OptionsThe accordion panel o

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1