You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
753 B
14 lines
753 B
<!--pages/test/input.wxml-->
|
|
<text>pages/test/input.wxml</text>
|
|
<view class="demobox">
|
|
<view class="title">1.密码输入框</view>
|
|
<input password="true" placeholder="请输入密码"/>
|
|
<view class="title">2.最大字符长度限制为10</view>
|
|
<input type="text" maxlength="10" placeholder="这里最多只能输入10个字符"/>
|
|
<view class="title">3.禁用输入框</view>
|
|
<input disabled="true" placeholder="该输入框已被禁用"/>
|
|
<view class="title">4.自定义placeholder样式</view>
|
|
<input placeholder-style="color:red;font-weight:bold" placeholder="自定义样式"/>
|
|
<view class="title">5.输入框事件监听</view>
|
|
<input bindinput="onInput" bindblur="onBlur" placeholder="这里输入内容将被监听"/>
|
|
</view> |