Detailed explanation of WeChat development input box

Y2J
Release: 2017-05-11 13:13:12
Original
2764 people have browsed it

Detailed explanation of WeChat development input box

The input input box is also used relatively frequently. . . For styles, wrap a view yourself and define it yourself. There are not many input attributes. If you need to test it yourself slowly, try

Main attributes:

Detailed explanation of WeChat development input box

wxml





  



  
  
Copy after login

js

Page({
 /**
 * 初始化数据
 */
 data:{
 phone: '',
 password: '',
 },
  
 /**
 * 监听手机号输入
 */
 listenerPhoneInput: function(e) {
  this.data.phone = e.detail.value;
  
 },
  
 /**
 * 监听密码输入
 */
 listenerPasswordInput: function(e) {
  this.data.password = e.detail.value;
 },
  
 /**
 * 监听登录按钮
 */
 listenerLogin: function() {
  //打印收入账号和密码
 console.log('手机号为: ', this.data.phone);
 console.log('密码为: ', this.data.password);
 },
  
 onLoad:function(options){
 // 页面初始化 options为页面跳转所带来的参数
 },
 onReady:function(){
 // 页面渲染完成
 },
 onShow:function(){
 // 页面显示
 },
 onHide:function(){
 // 页面隐藏
 },
 onUnload:function(){
 // 页面关闭
 }
})
Copy after login

wxss

.input{
 padding-left: 10px;
 height: 44px;
}
  
.inputView{
 border: 2px solid red;
 border-radius: 40px;
 margin-left: 15px;
 margin-right: 15px;
 margin-top: 15px;
}
Copy after login

【Related recommendations】

1. WeChat public account platform source code download

2. 微智创+WeChat robot source code

The above is the detailed content of Detailed explanation of WeChat development input box. 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
Popular Tutorials
More>
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!