小程序如何在js中获得页面的值
小程序在js中获得页面的值案例:
在对应的wxml页面中添加以下代码:
<formbindsubmit='formsubmit'>
<viewclass='Type'>
<van-celltitle="类型"is-link>
<pickername="vtype"bindchange="bindTypeChange"value="{{TypeIndex}}"range="{{Types}}">
<viewclass="selectIndex1">{{Types[TypeIndex]}}</view>
</picker>
</van-cell>
</view>
<!--button按钮-->
<buttonclass="issue-btn"type="default"form-type='submit'>按钮</button>
</form>
在对应的js页面中添加以下代码:
Page({
data:{
Types:["宣扬片","广告片","纪录片","短视频"],
TypeIndex:0,
},
//获得下标
bindTypeChange:function(e){
console.log('pickeraccount产生选择改变,携带值为',e.detail.value);
this.setData({
TypeIndex:e.detail.value
})
},
//表单提交按钮
formsubmit:function(e){
vartype=this.data.Types[this.data.TypeIndex];
//打印出来,看是否是获得成功了
console.log('type:',type);
}
wx.redirectTo({
url:'/pages/payOrder/Contract/contract',
})
})
本文来源:https://www.yuntue.com/post/80110.html | 云服务器网,转载请注明出处!