亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

angular inputNumber指令輸入框只能輸入數字的示例分析

發布時間:2021-06-03 14:04:56 來源:億速云 閱讀:450 作者:小新 欄目:web開發

小編給大家分享一下angular inputNumber指令輸入框只能輸入數字的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1、建立一個獨立模塊用于作為公用指令的模塊

1)生成模塊

ng g m directive

2)進入指令模塊目錄

cd directive

3)生成一個只能輸入數字的指令類

ng g d numberinput

4)指令模塊directive.module.ts代碼如下

import { NgModule, ModuleWithProviders } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NumberinputDirective } from './numberinput.directive';
@NgModule({
 imports: [
  CommonModule
 ],
 declarations: [NumberinputDirective],
 exports:[ // 使引用該模塊的類可以使用該指令
  NumberinputDirective
 ]
})
export class DirectiveModule { }

5)指令類numberinput.directive.ts代碼如下

@Directive({
 selector: 'input[numberInput]'
})
export class NumberInputDirective {
 // tslint:disable-next-line: no-input-rename
 @Input('numberInput') numberType: string;
 constructor(private el: ElementRef) {}

 @HostListener('input', ['$event.target.value'])
 onChange(value: string): void {
  if (this.numberType.length < 1) {
   this.updateIntegerValue(value);
  } else {
   this.el.nativeElement.value = value.replace(/[^\d.]/g, '');
  }
 }
 @HostListener('blur', ['$event.target.value']) onBlur(value: number): void {
  if (this.numberType.length >= 1) {
   this.updateFloatValue(value);
  }
 }
 updateIntegerValue(value: string): void {
  this.el.nativeElement.value = value.replace(/[^\d]/g, '');
 }
 updateFloatValue(floatValue: number): void {
  const value = String(floatValue);
  const reg = /^-?(0|[1-9][0-9]*)(\.[0-9]*)?$/.test(value);
  const numBegin = /^\d/.test(value);
  const numEnd = /\d$/.test(value);
  if (reg && numBegin && numEnd) {
   this.el.nativeElement.value = value;
  } else {
   this.el.nativeElement.value = 0;
  }
 }
}

以上是“angular inputNumber指令輸入框只能輸入數字的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金华市| 汤阴县| 平果县| 鲁甸县| 石嘴山市| 闽侯县| 湟源县| 广西| 高台县| 东安县| 祁阳县| 来安县| 朝阳区| 陇南市| 开化县| 抚顺县| 贵溪市| 衡南县| 阿坝县| 黑河市| 寻乌县| 安化县| 方城县| 巫溪县| 盐津县| 南雄市| 简阳市| 许昌市| 连城县| 德惠市| 吉安县| 文登市| 龙南县| 长葛市| 河津市| 茌平县| 新巴尔虎左旗| 青铜峡市| 定日县| 靖江市| 大新县|