ionic获取界面元素值

组件获取radio选中值

<ion-select placeholder="请选择" (ionChange)="selectBuiId($event)" cancelText="否" okText="是">
	<div *ngFor='let item of building,let i=index'>
            <ion-select-option selected="true" value="{{item.id}}" (click)="selectBuiId(item.id)">{{item.name}}</ion-select-option>
    </div>
</ion-select>

ts代码:
selectBuiId(id, name) {
	this.buildingId = id.detail.value;
}

获取input值

<ion-item>
    <ion-label>备注</ion-label>
    <ion-input placeholder="不超过十五个字" [(ngModel)]="remark"></ion-input>
  </ion-item>

ts代码:
public remark= {
    remark: ''
  };

this.remark;

获取当前日期值

formatDate() {
    // 三目运算符
    const Dates = new Date();
    // 年份
    const Year: number = Dates.getFullYear();
    // 月份下标是0-11
    const Months: any = ( Dates.getMonth() + 1 ) < 10  ?  '0' + (Dates.getMonth() + 1) : ( Dates.getMonth() + 1);
    // 具体的天数
    const Day: any = Dates.getDate() < 10 ? '0' + Dates.getDate() : Dates.getDate();
    // 小时
   const Hours = Dates.getHours() < 10 ? '0' + Dates.getHours() : Dates.getHours();
   // 分钟
   const Minutes = Dates.getMinutes() < 10 ? '0' + Dates.getMinutes() : Dates.getMinutes();
   // 秒
   const Seconds = Dates.getSeconds() < 10 ? '0' + Dates.getSeconds() : Dates.getSeconds();
   // 返回数据格式
   return Year + '-' + Months + '-' + Day + ' ' + Hours + ':' + Minutes + ':' + Seconds;
  }

const now = this.formatDate();
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章