小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 当前 Bug 的表现(可附上截图)
当自定义弹出层的下方存在textarea时,textarea的内容就会飘在弹出层上,如图
这是咋回事啊,知道textarea的层级很高,但也没必要这样吧,@官方出来解释一下啊,另外,点击弹出层也会穿透到下方的textarea上去
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
textarea 是原生组件,层级最高。请使用 cover-view 等方法覆盖,参考:https://developers.weixin.qq.com/miniprogram/dev/component/native-component.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<cover-view/> 内只能嵌套 <cover-view/> <cover-image/> <button/> <navigator/> <ad/> <official-account/>,textarea 标签的子节点树在真机上都会被忽略。
用 cover-view 覆盖 textarea 是可以的
你好,我是自定义了弹窗组件, <cover-view/> 是不能嵌套的吧
对,cover-view 不能嵌套 textarea
那请问这要怎么处理呢?
@凌云摘星傲苍穹 你好,谢谢您的建议 不过我尝试 cover-view 包裹 textarea 依然层级最高,请问是不是还有什么注意的点吗?
<
cover-view
class
=
"play"
>
textarea
v-if
"textarea"
style
"width: 100%;"
:value
"currentValue"
@
input
"handleInput"
placeholder-class
"placeholder-custom"
:placeholder
"placeholder"
:maxlength
"maxlength"
/>
</
把要覆盖在 textarea 上的内容用 cover-view 包裹,用 cover-view 覆盖 textarea,不是用 cover-view 包裹 textarea,具体原因可以参考原生组件的说明 https://developers.weixin.qq.com/miniprogram/dev/component/native-component.html
换呗,不用textarea ,给view加样式,做个textarea 的样子代替
哈哈哈,改下ui展现方式吧。自动规避
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
textarea 是原生组件,层级最高。请使用 cover-view 等方法覆盖,参考:https://developers.weixin.qq.com/miniprogram/dev/component/native-component.html
<cover-view/> 内只能嵌套 <cover-view/> <cover-image/> <button/> <navigator/> <ad/> <official-account/>,textarea 标签的子节点树在真机上都会被忽略。
用 cover-view 覆盖 textarea 是可以的
你好,我是自定义了弹窗组件, <cover-view/> 是不能嵌套的吧
对,cover-view 不能嵌套 textarea
那请问这要怎么处理呢?
@凌云摘星傲苍穹 你好,谢谢您的建议 不过我尝试 cover-view 包裹 textarea 依然层级最高,请问是不是还有什么注意的点吗?
<
cover-view
class
=
"play"
>
<
textarea
v-if
=
"textarea"
style
=
"width: 100%;"
:value
=
"currentValue"
@
input
=
"handleInput"
placeholder-class
=
"placeholder-custom"
:placeholder
=
"placeholder"
:maxlength
=
"maxlength"
/>
</
cover-view
>
把要覆盖在 textarea 上的内容用 cover-view 包裹,用 cover-view 覆盖 textarea,不是用 cover-view 包裹 textarea,具体原因可以参考原生组件的说明 https://developers.weixin.qq.com/miniprogram/dev/component/native-component.html
换呗,不用textarea ,给view加样式,做个textarea 的样子代替
哈哈哈,改下ui展现方式吧。自动规避