0
私は単一の文字列に変えたい日付入力(月、日、年)の束を持っています。私は、それぞれの要素、つまり、jqueryの$(要素)または角度1の$ angular(要素)から値を取得したいと思います。角度2の要素を選択する方法
このようなセレクタはありません。
<select name="DoBMonth" [(ngModel)]="DoBMonth" class="form-control" (change)="setDaysThisMonth(DoBMonth);updateDoB()" (focus)="editingDoB=true" (blur)="editingDoB = editingDoB && false">
<option *ngFor="let month of months" [value]="month.value">
{{month.display}}
</option>
</select>
<select name="DoBDay" class="form-control" [(ngModel)]="DoBDay" (change)="updateDoB()" (focus)="editingDoB=true" (blur)="editingDoB = editingDoB && false">
<option *ngFor="let day of days" [value]="day">
{{day}}
</option>
</select>
<select name="DoBYear" class="form-control" [(ngModel)]="DoBYear" (change)="updateDoB()" (focus)="editingDoB=true" (blur)="editingDoB = editingDoB && false">
<option *ngFor="let year of years" [value]="year">
{{year}}
</option>
</select>
。
updateDoB(){
this.DoB = ??('[DoBMonth]') + ??('[DoBDay]') + ??('[DoBYear]')
}
ありがとうございました。まだng2の周りに頭を上げている。 – DaveC426913