codecamp

Angular EasyUI 文本框

文本框( TextBox )是一个增强的输入字段组件。 文本框( TextBox )允许用户十分简单的创建一组表单。 文本框( TextBox )用于构建其他组合控件的基础组件。

属性列表

名称 数据类型 作用描述 默认值
value string 字段值。 null

注:
- 继承: InputBaseComponent 。
- 选择器: eui-textbox 。

使用方法

<div style="margin-bottom:10px;display:inline-block;margin-right:1em">
    <label [for]="t1" align="top">First Name:</label>
    <eui-textbox #t1 [(ngModel)]="fname" iconCls="icon-man" placeholder="First name"></eui-textbox>
</div><div style="margin-bottom:10px;display:inline-block">
    <label [for]="t2" align="top">Last Name:</label>
    <eui-textbox #t2 [(ngModel)]="lname" placeholder="Last name"></eui-textbox>
</div>
<div style="margin-bottom:10px">
    <label [for]="t3" align="top">Address:</label>
    <eui-textbox #t3 [(ngModel)]="addr" style="width:25em"></eui-textbox>
</div>
Angular EasyUI 复选框
Angular EasyUI 标签框
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Angular EasyUI 教程总览

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }