Home > Web Front-end > JS Tutorial > body text

How to use input component to implement password box in WeChat applet

亚连
Release: 2018-06-21 16:18:26
Original
2058 people have browsed it

This article mainly introduces the WeChat applet's use of input components to implement the password box function, involving operating techniques related to input component layout settings, and comes with source code for readers to download for reference. Friends in need can refer to this article

The example describes the WeChat applet using the input component to implement the password box function. Share it with everyone for your reference, the details are as follows:

Key code

index.wxml

<view style="width:80%; display:flex;">
 <view>用户名:</view>
 <input style="border: 1px solid;border-color: lightblue;width:60%;" 
 placeholder="请输入您的用户名" maxlength="16" type="text" focus="false"/>
</view>
<view style="width:80%; display:flex;">
 密 码:<input style="border: 1px solid;border-color: lightblue;width:60%;" 
 placeholder="请输入您的密码" password="true" maxlength="16" type="text" focus="false"/>
</view>
Copy after login

The above is what I compiled for everyone. I hope that in the future It will be helpful to everyone.

Related articles:

How to develop a two-dimensional weekly view calendar using Javascript

##About JS Abstract Factory Pattern (detailed tutorial)

How to solve the syntax conflict between Django and Vue

Tips on using ES6/JavaScript (detailed tutorial)

How to crawl website images in nodejs

How to develop AngularJS 2 applications using the VS Code editor

Related Building Angular2 development environment (detailed tutorial)

How to implement the observer pattern in JavaScript

How to implement explicit conversion and implicit conversion in JavaScript Formula conversion

How to use Redux architecture in ReactNative

What problems do you encounter when using MathJax in Angular?

The above is the detailed content of How to use input component to implement password box in WeChat applet. 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!