91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

五台县| 石狮市| 上饶县| 股票| 威远县| 独山县| 黑水县| 琼海市| 桐梓县| 罗田县| 铜山县| 孟村| 佛山市| 花莲县| 齐河县| 大化| 永济市| 甘孜县| 宜宾市| 陵水| 灯塔市| 滁州市| 泰安市| 年辖:市辖区| 东海县| 神池县| 乌什县| 赞皇县| 新营市| 赤水市| 莒南县| 巴彦淖尔市| 罗源县| 集安市| 临夏市| 乡城县| 凤城市| 忻城县| 白山市| 淮滨县| 龙井市|