我看了一些答案,但沒有工作對我來說,我輸了...我用科爾多瓦,離子和角2對象不支持屬性或方法「的getAttribute」
這裏是我的HTML
<ion-col *ngFor="let value of myButtonsFirstRow" width-25><button #elem ptcolor (click)="volumeClick(elem)" attr.floatValue="{{value}}"> {{value | fraction}}</button></ion-col>
這裏是我的打字稿
volumeClick(htmlElem: HTMLElement) {
this.volumeSelected = +htmlElem.getAttribute('floatValue');
}
我想設置從我創建的屬性值(在我的HTML)。但看起來像我不能使用getAttribute方法。我的htmlElem已設置,但我沒有看到該方法,所以我知道我做錯了什麼,但我不知道是什麼!
由於
這就是我認爲的離子元素...即使按鈕元素與HTML相同哈哈。無論如何,我不會再爲那一個而墮落。你的答案#1是完美的!再次感謝 ! :) – theyouishere