⼩程序⾃制提⽰框(具有输⼊⽂本功能)
⼩程序⾃带的API中的页⾯交互功能,虽然提⽰功能⾮常全⾯,但是所有的交互API中是没有可以⾃⼰在提⽰框中输⼊⽂本的功能,那么现在我们来⾃⼰做这样的⼀个提⽰框(可以带有输⼊功能),在提⽰框输⼊完内容之后,点击确定,可以将⽂本内容返回,点击取消则可以回到之前的状态。
(在这⾥,主页⾯的布局可以根据每个⼈的想法来布局,这⾥展⽰的css之后展⽰提⽰框部分的)
1、⾸先打开开发者⼯具,建⽴⼀个代码模板,那么我们这个提⽰框就是写在这个页⾯上。
这⾥我们主页⾯叫做index
2、在基本页⾯中写上⼀个姓名的⽂本,当前姓名⽤<text>{{stuName}}</text>表⽰,然后为⼀个button按钮,再在js⽂件中,建⽴相应的点击事件以及stuName的信息。这样,⼀个原始页⾯就写好了。
下⾯我们开始弹出框页⾯的制作
<view class='toast-box' hidden='{{!ifName}}'>
<view class='toastbg'></view>
<view class='showToast'>
<view class='toast-title'>
<text>修改姓名</text>
</view>
<view class='toast-main'>
<view class='toast-input'>
<input placeholder='请输⼊姓名' bindinput='setValue' data-name='stuEidtName'></input>
</view>
</view>
<view class='toast-button'>
<view class='button1'>
<button catchtap='cancel'>取消</button>
</view>
<view class='button2'>
<button catchtap='confirm'>确定</button>
</view>
</view>
</view>
</view>
3、我们可以发现,点击按钮后弹出输⼊框,如果点击除取消和确定之外的地⽅,是不会有反应的。为了做到这个功能,我们⽤⼀个绝对位置的渲染层(toastbg),覆盖住整个页⾯,并且如果你的页⾯长度没有滚动的话,请输⼊min—height:100vh,如果页⾯发⽣滚动,请把长度控制在height:100%即可看到整个页⾯都被覆盖。并且这个覆盖的页⾯要表现为透明,opacity:0.2,即可
4、bindinput为写⽂本时所触发的事件,data-name为⽂本数据所保存的地⽅,在js中我们可以把这个数据打印出来,会发现我们所输⼊的⽂本信息。
以下为css的代码
.toast-box {
width: 100%;
height: 100%;
opacity: 1;
position: fixed;
top: 0px;
left: 0px;
}
.toastbg {
opacity: 0.2;
background-color: black;
position: absolute;
width: 100%;
min-height: 100vh;
}
.showToast {
position: absolute;
opacity: 1;
width: 70%;
margin-left: 15%;
margin-top: 40%;
}
.toast-title {
padding-left: 5%;
background-color: #2196f3;
color: white;
padding-top: 2vh;
padding-bottom: 2vh;
padding-bottom: 2vh;
border-top-right-radius: 16rpx;
border-top-left-radius: 16rpx;
}
.toast-main {
padding-top: 2vh;
padding-bottom: 2vh;
background-color: white;
text-align: center;
}
.toast-input {
margin-left: 5%;
margin-right: 5%;
border: 1px solid #ddd;
padding-left: 2vh;
padding-right: 2vh;
padding-top: 1vh;
padding-bottom: 1vh;
}
.
toast-button {
display: flex;
}
.button1 {
width: 50%;
}
.button2 {
width: 50%;
}
.button1 button {
width: 100%;
background-color: white;htmlborder
color: red;
border-radius: 0px;
border-bottom-left-radius: 16rpx;
}
.button2 button{
width: 100%;
background-color: white;
color: black;
border-radius: 0px;
border-bottom-right-radius: 16rpx;
}
.picker {
padding-top: 1vh;
padding-bottom: 1vh;
}
我们可以根据⾃⼰的喜欢,对提⽰框的样式进⾏改变
5、编写js代码,我们需要实现以下⼀些基本功能(点击出现弹窗,取消不改变数据值,确定进⾏判断数据值,若为空则不能改变,否则可以改变,并且主页⾯上的内容要变为相应改变后的内容)
6、给最外层的弹窗附上hidden(如图所⽰),为这个值初始为false,点击按钮后触发事件,改false为true,这样即可点击出现弹窗。
7、为取消按钮附上点击事件,与hidden的部分刚好相反即可。
8、为书写⽂本绑定事件,上述代码中命名为setValue,这个函数我们传⼊⼀个event进去,将其打印,
我们可以发现在其的detail中有我们刚刚所书写的内容,我们将这个值,传给js中data⼀个属性,这⾥我们命名为edit。
9、为确定绑定事件,⽤this.data.edit将这个值进⾏判断,若为空,我们⽤wx.showToast提⽰⽤户信息没有填写完整,并且页⾯不会改变。若不为空,则我们setData⼀下我们的stuName为这个edit的值,并且重新把hidden的属性值改为false。
10、返回到初始页⾯我们就可以看到我们⾃⼰做得⼀个提⽰框,并且具有修改值的功能

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。