zoukankan      html  css  js  c++  java
  • 小程序3.7

    cheakbox复选框

    value String   输入框的初始内容  
    type String "text" input 的类型  
    password Boolean false 是否是密码类型  
    placeholder String   输入框为空时占位符  
    placeholder-style String   指定 placeholder 的样式  
    placeholder-class String "input-placeholder" 指定 placeholder 的样式类  
    disabled Boolean false 是否禁用  
    maxlength Number 140 最大输入长度,设置为 -1 的时候不限制最大长度  
    cursor-spacing Number 0 指定光标与键盘的距离,单位 px 。取 input 距离底部的距离和 cursor-spacing 指定的距离的最小值作为光标与键盘的距离  
    auto-focus Boolean false (即将废弃,请直接使用 focus )自动聚焦,拉起键盘  
    focus Boolean false 获取焦点  
    confirm-type String "done" 设置键盘右下角按钮的文字 1.1.0
    confirm-hold Boolean false 点击键盘右下角按钮时是否保持键盘不收起 1.1.0
    cursor Number   指定focus时的光标位置 1.5.0
    selection-start Number -1 光标起始位置,自动聚集时有效,需与selection-end搭配使用 1.9.0
    selection-end Number -1 光标结束位置,自动聚集时有效,需与selection-start搭配使用 1.9.0
    bindinput EventHandle   当键盘输入时,触发input事件,event.detail = {value, cursor},处理函数可以直接 return 一个字符串,将替换输入框的内容。  
    bindfocus EventHandle   输入框聚焦时触发,event.detail = {value: value}  
    bindblur EventHandle   输入框失去焦点时触发,event.detail = {value: value}  
    bindconfirm EventHandle   点击完成按钮时触发,event.detail = {value: value}

    type 有效值:

    说明
    text 文本输入键盘
    number 数字输入键盘
    idcard 身份证输入键盘
    digit 带小数点的数字键盘

    confirm-type 有效值:

    说明
    send 右下角按钮为“发送”
    search 右下角按钮为“搜索”
    next 右下角按钮为“下一个”
    go 右下角按钮为“前往”
    done 右下角按钮为“完成”


    <checkbox-group>
    <checkbox></checkbox>
    </checkbox-group>

    属性value checked

     

    报错  没在标签上

     

    lable标签  和这个有一样的作用

    input

    value String   输入框的初始内容  
    type String "text" input 的类型  
    password Boolean false 是否是密码类型  
    placeholder String   输入框为空时占位符  
    placeholder-style String   指定 placeholder 的样式  
    placeholder-class String "input-placeholder" 指定 placeholder 的样式类  
    disabled Boolean false 是否禁用  
    maxlength Number 140 最大输入长度,设置为 -1 的时候不限制最大长度  
    cursor-spacing Number 0 指定光标与键盘的距离,单位 px 。取 input 距离底部的距离和 cursor-spacing 指定的距离的最小值作为光标与键盘的距离  
    auto-focus Boolean false (即将废弃,请直接使用 focus )自动聚焦,拉起键盘  
    focus Boolean false 获取焦点  
    confirm-type String "done" 设置键盘右下角按钮的文字 1.1.0
    confirm-hold Boolean false 点击键盘右下角按钮时是否保持键盘不收起 1.1.0
    cursor Number   指定focus时的光标位置 1.5.0
    selection-start Number -1 光标起始位置,自动聚集时有效,需与selection-end搭配使用 1.9.0
    selection-end Number -1 光标结束位置,自动聚集时有效,需与selection-start搭配使用 1.9.0
    bindinput EventHandle   当键盘输入时,触发input事件,event.detail = {value, cursor},处理函数可以直接 return 一个字符串,将替换输入框的内容。  
    bindfocus EventHandle   输入框聚焦时触发,event.detail = {value: value}  
    bindblur EventHandle   输入框失去焦点时触发,event.detail = {value: value}  
    bindconfirm EventHandle   点击完成按钮时触发,event.detail = {value: value}

    type 有效值:

    说明
    text 文本输入键盘
    number 数字输入键盘
    idcard 身份证输入键盘
    digit 带小数点的数字键盘

    confirm-type 有效值:

    说明
    send 右下角按钮为“发送”
    search 右下角按钮为“搜索”
    next 右下角按钮为“下一个”
    go 右下角按钮为“前往”
    done 右下角按钮为“完成”
    password="true"
    placeholder 
    placeholder-style
    placeholder-class
    disabled
    maxlength
    auto-focus   用focus代替
    bindinput
    bindfocus
  • 相关阅读:
    WebService发布到IIS
    MongDb的安装
    Linux shell编程— 命令替换
    Linux软件包管理
    Linux 管理进程
    Linux 中进程的管理
    JavaScript学习day3 (基本语法下)
    JavaScript学习day2 (基本语法上)
    JavaScript学习day1
    Python 学习
  • 原文地址:https://www.cnblogs.com/namehou/p/8520995.html
Copyright © 2011-2022 走看看