Authored by huangping

Update bootstrap-plugin.md

... ... @@ -35,6 +35,9 @@
显示一个导航菜单
依赖于:无
继承于:无
使用举例
```javascript
$("#leftMenu").accordion({
... ... @@ -94,6 +97,9 @@
显示一个导航菜单
依赖于:无
继承于:无
使用举例
```javascript
$("#div").alerts({
... ... @@ -129,10 +135,108 @@
| 方法名称 | 参数 | 备注 |
| ---------|:--------:| --------:|
|hide |speed |隐藏提示框,参数为jquery的hide参数|
|show |speed |显示提示框,参数为jquery的hide参数|
|show |speed |显示提示框,参数为jquery的show参数|
----------
## 3、显示一个面包屑导航(breadcrumb)##
显示一个面包屑导航
依赖于:无
继承于:无
使用举例
```javascript
$("#div").breadcrumb({
data: [{
text: "CRM首页",
href: "http://www.baidu.com"
}, {
text: "会员数据"
}, {
text: "会员信息"
}]
});
```
**该插件可供选择的属性(option)有:**
| 属性名称 | 属性类型 | 可否为空 | 默认值 | 备注 |
| ---------|:--------:| --------:|-----:|------:|-----:|
|textField |string |是 | "text" |data中显示文字的字段名|
|hrefField |string |是 |"href" |data中链接地址的字段名|
|data |array |否 |[] |面包屑导航的值|
**该插件暂未有供选择的事件(event)有:**
**该插件暂未提供可供选择的方法(method):**
----------
## 4、显示一个下组合框(combo)##
显示一个组合框
依赖于:panel
继承于:textbox
使用举例
```javascript
$("#txt").combo({
panelSelector : "#selector",
panelHeight : 200,
panelWidth : 300
});
```
**该插件属性完全继承与textbox的所有属性,另外可供选择的私有属性(option)有:**
| 属性名称 | 属性类型 | 可否为空 | 默认值 | 备注 |
| ---------|:--------:| --------:|-----:|------:|-----:|
|panelSelector |string|object |否 | undefined |组合框的下拉面板的选择器或jquery对象|
|panelHeight |string|int |是 |"auto" |下拉面板的高度|
|panelWidth |string|int |是 |undefined |下拉面板的宽度(默认与输入框一样)|
**该插件事件完全继承与textbox,另外可供选择的私有事件(event)有:**
| 事件名称 | 参数 | 备注 |
| ---------|:--------:| --------:|
|onBeforeShowPanel |none |显示之前执行(当该函数返回false时,则会阻止显示)|
|onAfterShowPanel |none |显示之后执行|
|onBeforeHidePanel |none |隐藏之前执行(当该函数返回false时,则会阻止隐藏)|
|onAfterHidePanel |none |隐藏之后执行|
**该插件方法完全继承与textbox,另外提供的私有可供选择的方法(method):**
| 方法名称 | 参数 | 备注 |
| ---------|:--------:| --------:|
|getPanel |none |获取下拉面板的jquery对象|
|hidePanel |none |隐藏面板|
|showPanel |none |显示面板|
| 方法名称 | 参数 | 备注 |
| ---------|:--------:| --------:|
|hide |speed |隐藏提示框,参数为jquery的hide参数|
|show |speed |显示提示框,参数为jquery的show参数|
 
\ No newline at end of file
... ...