亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

首頁(yè) 微信小程式 微信開發(fā) 微信小程式 input 元件詳細(xì)介紹

微信小程式 input 元件詳細(xì)介紹

Dec 29, 2016 am 09:20 AM

微信小程序 input 組件詳細(xì)介紹

input輸入框使用的頻率也是比較高的。 。 。樣式的話自己外麵包裹個(gè)view自己定義。 input屬性也不是很多,有需要自己慢慢測(cè),試試

主要屬性:

微信小程序 input 組件詳細(xì)介紹

wxml

<!--style的優(yōu)先級(jí)比class高會(huì)覆蓋和class相同屬性-->
<view class="inputView" style="margin-top: 40% ">
<input class="input" type="number" placeholder="請(qǐng)輸入賬號(hào)" placeholder-style="color: red" bindinput="listenerPhoneInput" />
</view>
 
<view class="inputView">
<input class="input" password="true" placeholder="請(qǐng)輸入密碼" placeholder-style="color: red" bindinput="listenerPasswordInput"/>
</view>
 
 
<button style="margin-left: 15rpx; margin-right: 15rpx; margin-top: 50rpx; border-radius: 40rpx" type="primary" bindtap="listenerLogin">登錄</button>

js

Page({
 /**
 * 初始化數(shù)據(jù)
 */
 data:{
 phone: &#39;&#39;,
 password: &#39;&#39;,
 },
 
 /**
 * 監(jiān)聽手機(jī)號(hào)輸入
 */
 listenerPhoneInput: function(e) {
  this.data.phone = e.detail.value;
 
 },
 
 /**
 * 監(jiān)聽密碼輸入
 */
 listenerPasswordInput: function(e) {
  this.data.password = e.detail.value;
 },
 
 /**
 * 監(jiān)聽登錄按鈕
 */
 listenerLogin: function() {
  //打印收入賬號(hào)和密碼
 console.log(&#39;手機(jī)號(hào)為: &#39;, this.data.phone);
 console.log(&#39;密碼為: &#39;, this.data.password);
 },
 
 onLoad:function(options){
 // 頁(yè)面初始化 options為頁(yè)面跳轉(zhuǎn)所帶來的參數(shù)
 },
 onReady:function(){
 // 頁(yè)面渲染完成
 },
 onShow:function(){
 // 頁(yè)面顯示
 },
 onHide:function(){
 // 頁(yè)面隱藏
 },
 onUnload:function(){
 // 頁(yè)面關(guān)閉
 }
})

wxss

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

js請(qǐng)關(guān)注PHP中文網(wǎng)!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願(yuàn)投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請(qǐng)聯(lián)絡(luò)admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動(dòng)的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強(qiáng)大的PHP整合開發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺化網(wǎng)頁(yè)開發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級(jí)程式碼編輯軟體(SublimeText3)

熱門話題

Laravel 教程
1597
29
PHP教程
1488
72