In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces "how to use common form components of Weixin Mini Programs." In daily operation, I believe many people have doubts about how to use common form components of Weixin Mini Programs. The editor consulted all kinds of materials and sorted out simple and easy operation methods. I hope to answer your doubts about "how to use common form components of Weixin Mini Programs." Next, please follow the small series to learn together!
1. Common form components 1.1 button
Button component, is one of the commonly used form components, used for event triggering and form submission. Its attribute table is shown below.
Code example:
7. button small case (1) mini button primary button secondary button warning button (2) button status normal button police button load button (3) add button event point I get user information
1.2 checkbox
为复选框组件,常用于在表单中进行多项数据的选择。复选框的为父控件,其内部嵌套若干个子控件。
属性如下:
组件的属性如下:
代码示例:
checkbox.wxml
8.checkbox小案例 利用for循环批量生成 {{item.value}}
checkbox.js
Page({ data: { items: [ { name: "tiger", value: "老虎" }, { name: "elephant", value: "大象" }, { name: "lion", value: "狮子", checked: "true" }, { name: "penguin", value: "企鹅" }, { name: "elk", value: "麋鹿" }, { name: "swan", value: "天鹅" }, ] }, checkboxChange:function(e) { console.log("checkbox发生change事件,携带value值为:", e.detail.value) }})
1.3 input
为输入框组件,常用于文本(如姓名、年龄等信息)的输入。属性表如下:
9.input小案例 (1)文字输入框 (2)密码输入框 (3)禁用输入框 (4)为输入框增加事件监听
1.4 label
是标签组件,不会呈现任何效果,但是可以用来改进表单组件的可用性。当用户在label元素内点击文本时,就会触发此控件,即当用户选择该标签时,事件会传递到和标签相关的表单控件上,可以使用for属性绑定id,也可以将空间放在该标签内部,该组件对应属性如下所示。
wxml
10.lable小案例 (1)利用for属性 老虎 大象 狮子 (2)label包裹组件 老虎 大象 狮子 1.5 form
为表单控件组件,用于提交表单组件中的内容。控件组件内部可以嵌套多种组件。
组件属性如下:
form.wxml
11.form小案例 模拟注册功能 用户名: 密码: 手机号: 验证码: 注册 重置
form.js
Page({ onSubmit(e) { console.log("form发生了submit事件,携带数据为:") console.log(e.detail.value) }, onReset() { console.log("form发生了reset事件,表单已被重置") }})
输入测试数据后点击注册按钮触发表单提交事件。
1.6 radio
为单选框组件,往往需配合组件来使用,标签嵌套在当中。
组件属性如下:
组件属性如下:
radio.wxml
14.radio小案例 利用for循环批量生成 {{item.value}}
radio.js
Page({ data: { radioItems: [ { name: 'tiger', value: '老虎' }, { name: 'elephant', value: '大象' }, { name: 'lion', value: '狮子', checked: 'true' }, { name: 'penguin', value: '企鹅' }, { name: 'elk', value: '麋鹿' }, { name: 'swan', value: '天鹅' }, ] }, radioChange:function(e) { console.log("radio发生change事件,携带value值为:", e.detail.value) }})
1.7 slider
为滑动选择器,用于可视化地动态改变某变量地取值。属性表如下:
slider.wxml
15.slider小案例 (1)滑动条右侧显示当前进度值 (2)自定义滑动条颜色与滑块样式 (3)禁用滑动条 (4)增加滑动条监听事件
1.8 switch
为开关选择器,常用于表单上地开关功能,属性表如下所示。
switch.wxml
16.switch小案例 增加switch事件监听
1.9 textarea
为多行输入框,常用于多行文字的输入。
2、实训小案例–问卷调查
survey.wxml
1.你现在大几? 大一 大二 大三 大四 2.你使用手机最大的用途是什么? 社交 网购 学习 其他 3.平时每天使用手机多少小时? 4.你之前有使用过微信小程序吗? 无 有 5.谈谈你对微信小程序未来发展的看法 提交 重置
survey.js
Page({ universityChange: function (e) { console.log("你选择的现在大几:", e.detail.value) }, mobilChange: function (e) { console.log("你选择使用手机的最大用途是:", e.detail.value) }, timechange: function (e) { console.log("你选择的每天使用手机的时间是:", e.detail.value + "小时") }, programChange: function (e) { console.log("你选择的是否使用过微信小程序:", e.detail.value) }, onSubmit(e) { console.log("你输入的对小程序发展前途的看法是:"+e.detail.value.textarea) }, onReset() { console.log("表单已被重置") }})
到此,关于"微信小程序常用表单组件如何使用"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.