ฉันมีช่องวันที่และต้องการลบตัวยึดตามค่าเริ่มต้น
ฉันใช้จาวาสคริปต์onfocus
และonfocusout
เหตุการณ์เพื่อลบตัวยึด
ใครช่วยใช้คำสั่ง angular2 ได้ไหม
<input name="date" type="text" onfocus="(this.type='date')" onfocusout="(this.type='text')" class="dateinput">
ฉันพยายามแก้ไขด้วยวิธีนี้ แต่ฉันมีปัญหากับการรีเซ็ตประเภทช่องป้อนข้อมูล
import { Directive, ElementRef, Input } from 'angular2/core';
@Directive({
selector: '.dateinput',
host: {
'(focus)': 'setInputFocus()',
'(focusout)': 'setInputFocusOut()',
}})
export class MyDirective {
constructor(el: ElementRef) { this.el = el.nativeElement; console.log(this.el);}
setInputFocus(): void {
//console.log(this.elementRef.nativeElement.value);
}
}
dateinput
?