.textarea { placeholder-color: gray; } // xxx.js import promptAction from '@ohos.promptAction'; export default { change(e){ promptAction.showToast({ message: 'value: ' + e.text + ', lines: ' + e.lines + ', height: ' + e.height, duration: 3000, }); } } ...
.textarea { placeholder-color: gray; } // xxx.js import promptAction from '@ohos.promptAction'; export default { change(e){ promptAction.showToast({ message: 'value: ' + e.text + ', lines: ' + e.lines + ', height: ' + e.height, duration: 3000, }); } } text...
https://developers.weixin.qq.com/s/zdzKnqma7IMJ color: var(--red, #ee0a24) 点btn 动态切换placeholder class #ee0a24 在 textarea不生效,在input可以。 如果 #ee0a24换成red就可以生效 代码片段 https://developers.weixin.qq.com/s/zdzKnqma7IMJ 回答关注问题邀请回答 收藏 分享 1 个回答 Pola...
placeholder string - 否 提示文本的内容 maxlength number - 否 输入框可输入的最多字符数量,不填表示不限制输入框中字符数量 model:value(1100+) string - 否 用于绑定和更新框架中的值的model指令。 样式 支持active伪类。除了支持 通用样式以外,还支持如下样式。 名称 类型 默认值 是否必填 描述 color color ...
// 文本颜色 --textarea-text-color: #333333; // 文本line-height --textarea-text-line-height: 1.2; // 禁用状态文本颜色 --textarea-disabled-text-color: rgb(200, 201, 204); // 占位符文本颜色 --textarea-placeholder-text-color: #BFC0C3; // 清除图标大小 --textarea-clear-icon-size:...
<picker mode="selector"bindchange="bindPickerChange1"value="{{listQuery.originalName}}"range="{{material.originalOptions}}" disabled="{{material.originalName!=''}}"> <textarea placeholder="请输入基原"name="originalName"value="{{material.originalName}}"disabled/> ...
<textareaclass="content"placeholder="请输入内容"oninput="changeContent()"></textarea> </div> </div> 样式: 最外层的div不需要样式,重点在里面的pre和textarea textarea绝对定位,高度为100%,也就是高度随着外面container的高度变化。 pre是块元素,占用空间但是不可见。在textarea输入的时候,实时的把内容写...
placeholder-styleString指定 placeholder 的样式,目前仅支持color,font-size和font-weight placeholder-classStringtextarea-placeholder指定 placeholder 的样式类 disabledBooleanfalse是否禁用 maxlengthNumber140最大输入长度,设置为 -1 的时候不限制最大长度 auto-focusBooleanfalse自动聚焦,拉起键盘。
textarea输入框同时设置showCounter(true)和 placeholder文本,输入换行符后清空输入内容 其他补充信息 版本或分支信息 master Release 4.1 Release 4.0 Release 3.2 常耀中创建了任务9个月前 常耀中添加了 bug 标签9个月前 展开全部操作日志 openharmony_ci成员9个月前 ...
placeholder-style="color:#999" auto-focus="{{true}}"></textarea> js: _this.valueChange = function (e) { console.log(e); _this.setState({ value: e.detail.value }); 殇断了情灬 回答于2020-01-03 是用Taro编译的, 开始觉得这个事件(bindinput)是不是触发不了, 后来打印发现报错 回答 0...