- 快速上手
-
布局
- 卡片 JRCard
- 容器布局 JRContainer
- 表格 JRTable
-
表单
- 按钮 JRButton
- 复选框 JRCheck
- 复选组 JRCheckGroup
- 日期选择 JRDatePicker
- 表单 JRForm
- 输入框 JRInput
- 多级选择 JRMultiSelect
- 单选组 JRRadioGroup
- 下拉选择 JRSelect
- 开关 JRSwitch
- 展示文本 JRText
- 文本输入 JRTextArea
- 树型视图 JRTreeView
- 上传文件 JRUpload
-
通知
- 遮罩 JRMask
- 模态框 JRModal
- 通知 JRNotify
- 确认提示 JRPopConfirm
-
导航
- 折叠面板 JRCollapse
- 面包屑 JRCrumb
- 两级菜单 JRMenu
- 分页 JRPager
- 菜单栏 JRSidebar
- 步骤 JRSteps
- 选项卡 JRTabs
-
拖拽相关
- 拖出 JRDraggable
- 拖入 JRDroppable
- 移动 JRMovable
- 滑块 JRSlider
-
其它
- 徽标 JRBadge
- 图标 JRIcon
- 图片预览 JRImagePreview
- 加载 JRLoading
- 国际化 JRLocaleProvider
- 进度条 JRProgress
- 文字提示 JRTooltip
代码演示
基本形式
大部分属性的用法与<textarea>
一致。
|
表单项
在表单中使用
|
验证
|
|
字数实时统计
|
|
API
Classes
Constants
- Component
JRTextArea 输入扩展
Functions
- config()
- validate() 根据
rules
验证组件的值是否正确() ⇒object
JRTextArea
Kind: global class
Extend: Component
new JRTextArea()
Param | Type | Default | Description |
---|---|---|---|
[options.data] | object |
= 绑定属性 | |
[options.data.value] | string |
<=> 文本框的值 | |
[options.data.placeholder] | string |
=> 占位符 | |
[options.data.state] | string |
<=> 文本框的状态 | |
[options.data.maxlength] | number |
=> 文本框的最大长度 | |
[options.data.rules] | Array.<object> |
[] |
=> 验证规则 |
[options.data.autofocus] | boolean |
false |
=> 是否自动获得焦点 |
[options.data.height] | number |
120 |
=> 高度 |
[options.data.required] | boolean |
false |
=> 是否必填 |
[options.data.message] | string |
"''" |
=> 必填校验失败提示的消息 |
[options.data.hideTip] | boolean |
false |
=> 是否显示校验错误信息 |
[options.data.readonly] | boolean |
false |
=> 是否只读 |
[options.data.disabled] | boolean |
false |
=> 是否禁用 |
[options.data.visible] | boolean |
true |
=> 是否显示 |
[options.data.class] | string |
=> 补充class | |
[options.data.size] | string |
=> 组件大小, sm/md/lg | |
[options.data.width] | number |
=> 组件宽度 |
Component
JRTextArea 输入扩展
Kind: global constant
Author: sensen(rainforest92@126.com)
config()
Kind: global function
Access: protected
validate() 根据rules
验证组件的值是否正确() ⇒ object
Kind: global function
Returns: object
- result 结果
Access: public