编辑控件(edit)

编辑控件介绍

编辑控件(edit),父类为文本控件(Text),也即:输入控件。是一个特殊的文本控件,因此所有文本控件的函数的属性和函数都适用于编辑控件。对于一个输入框控件,我们可以通过text属性设置他的内容,通过lines属性指定输入框的行数;在代码中通过getText()函数获取输入的内容。

属性-hint

输入提示。这个提示会在输入框为空的时候显示出来。 <template> <edit id="demo" hint="hello"/> </template>

属性-inputType

指定输入框可以输入的文本类型。
  • number。输入数字
  • text。输入文本
  • password。输入密码
<template> <linear> <edit id="demo" inputType="password"/> </linear> </template>