The use of input forms, redio and drop-down lists in WeChat mini programs

不言
Release: 2018-06-27 10:17:53
Original
2272 people have browsed it

This article mainly introduces the relevant information about the use cases of WeChat applet input form, redio and drop-down list. I hope this article can help everyone. Friends in need can refer to

WeChat Usage example of mini program input form, redo and drop-down list

A simple reservation type form, effect

Main code :

联系人 性别 手机号码 预约项目 {{casArray[casIndex]}}
Copy after login

.js file

data: { nickName: "", avatarUrl: "", casArray: ['双眼皮', 'TBM', '隆胸', '减肥', 'qita'], userName: '', mobile: '', Gender: 'female', casIndex: 0, items: [ { name: 'male', value: '男' }, { name: 'female', value: '女', checked: 'true' }, ] }, radioChange: function (e) { console.log('值:', e.detail.value) this.setData({ Gender: e.detail.value }) }, /** * 生命周期函数--监听页面加载 */ bindCasPickerChange: function (e) { console.log(this.data.casArray); console.log('下拉选择的是', this.data.casArray[e.detail.value]) this.setData({ casIndex: e.detail.value }) },
Copy after login

Specific The form style can be adjusted by yourself. The wxss style file code is not written.

Refer to the official document form component

https://mp.weixin.qq.com/debug/wxadoc/dev/component/ form.html

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Introduction to vidao’s video playback and barrage functions in WeChat Mini Program

WeChat Mini Program Parsing of Form Form

WeChat applet form verification error prompt effect

The above is the detailed content of The use of input forms, redio and drop-down lists in WeChat mini programs. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!