uniapp——自定义input清除事件

Posted 琼菇凉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp——自定义input清除事件相关的知识,希望对你有一定的参考价值。

效果图如下:

 

 html

<view class="disF">
                        <view class="qhItem">
                            <view class="m-qhTit">取号人姓名:</view>
                            <view class="qhInput uni-input-wrapper">
                                <input type="text" placeholder="请填写取号人姓名" v-model="cusname" />
                                <text class="iconfont iconshanchu" v-if="cusname.length>0" @click="cusname=\'\'"></text>
                            </view>
                        </view>
                        <view class="qhItem">
                            <view class="m-qhTit">手机号:</view>
                            <view class="qhInput uni-input-wrapper">
                                <input type="number" placeholder="请填写手机号" v-model="mobile" />
                                <text class="iconfont iconshanchu" v-if="mobile.length>0" @click="mobile=\'\'"></text>
                            </view>
                        </view>
                        <view class="qhItem">
                            <view class="m-qhTit">排队号:</view>
                            <view class="qhInput uni-input-wrapper">
                                <input type="number" placeholder="请填写排队号" v-model="number" />
                                <text class="iconfont iconshanchu" v-if="number.length>0" @click="number=\'\'"></text>
                            </view>
                        </view>
                    </view>

CSS:

.disF{
                    display: flex;
                    width: 730px;
                    .qhItem{
                        width: 33%;
                        .m-qhTit{
                            min-width: 85px;
                            height: 34px;
                            line-height: 34px;
                            font-size: 14px;
                            text-align: right;
                            margin-right: 6px;
                        }
                        .qhInput{
                            position: relative;
                            input{
                                width: 144px;
                                height: 34px;
                                line-height: 34px;
                                border: 1px solid #ccc;
                                padding: 0 8px;
                                font-size: 14px;
                                border-radius: 2px;
                            }
                            .iconshanchu{
                                font-size: 16px;
                                color: #ccc;
                                position: absolute;
                                top: 3px;
                                right: 15px;
                                cursor: pointer;
                            }
                        }
                    }
                }

js:

 

 

归纳总结:

1.data中声明变量

2.input绑定变量

3.清除按钮:判断变量的长度,如果大于0点击click事件清空值

以上是关于uniapp——自定义input清除事件的主要内容,如果未能解决你的问题,请参考以下文章

uni自定义onBackPress事件

uniapp的input组件点击时如何清除placeholder里面的内容?

uniapp专题学习

微信小程序自定义组件-可清除的input组件

如何让自定义视图观察包含片段的生命周期事件而不是活动?

如何在移动web模仿客户端给input输入框添加自定义清除按钮