Angular2는 클릭 된 요소 ID 가져 오기


85

그런 클릭 이벤트가 있습니다

 <button (click)="toggle($event)" class="someclass" id="btn1"></button>
 <button (click)="toggle($event)" class="someclass" id="btn2"></button>

함수 입력 매개 변수에서 이벤트를 포착하고 정확히 어떤 버튼을 클릭했는지 알아보고 싶습니다.

toggle(event) {

}

그러나 재산 event이 없습니다 id.

altKey: false
bubbles: true
button: 0
buttons: 0
cancelBubble: false
cancelable: true
clientX: 1198
clientY: 29
ctrlKey: false
currentTarget: button#hdrbtn_notificaton.mdl-button.mdl-js-button.mdl-js-ripple-effect.mdl-button--icon
defaultPrevented: false
detail: 1
eventPhase: 3
fromElement: null
isTrusted: true
isTrusted: true
layerX: -566
layerY: 5
metaKey: false
movementX: 0
movementY: 0
offsetX: 22
offsetY: 13
pageX: 1198
pageY: 29
path: Array[13]
relatedTarget: null
returnValue: true
screenX: 1797
screenY: 148
shiftKey: false
sourceCapabilities: InputDeviceCapabilities
srcElement: span.mdl-button__ripple-container
target: span.mdl-button__ripple-container
timeStamp: 1458032708743
toElement: span.mdl-button__ripple-container
type: "click"
view: Window
webkitMovementX: 0
webkitMovementY: 0
which: 1
x: 1198
y: 29

어떻게 찾을 수 id있습니까?

업데이트 : Plunkers는 모두 좋지만 제 경우에는 로컬에 있습니다.

event.srcElement.attributes.id-정의되지 않음 event.currentTarget.id-값이 있음

크롬 최신 버전 49.0.2623.87m를 사용하고 있습니다.

그럴 수 Material Design Lite있습니까? 내가 그것을 사용하고 있기 때문입니다.

여기에 이미지 설명 입력


무엇을하고 싶 id습니까?
Pardeep Jain

동일한 클릭 기능을 실행하는 두 개의 버튼이 있습니다. 나는 하나를 클릭 한 알아 내야 그래서
sreginogemoh

단순히 idperameters와 함께 static / dynamic 을 전달합니다 .
Pardeep 자이나교

왜 얻기가 그렇게 어려운 id가요?
sreginogemoh

1
단지 발견에event.currentTarget.id
sreginogemoh

답변:


139

id버튼 의 속성에 액세스 srcElement하려면 이벤트 속성을 활용할 수 있습니다 .

import {Component} from 'angular2/core';

@Component({
  selector: 'my-app',
  template: `
    <button (click)="onClick($event)" id="test">Click</button>
  `
})
export class AppComponent {
  onClick(event) {
    var target = event.target || event.srcElement || event.currentTarget;
    var idAttr = target.attributes.id;
    var value = idAttr.nodeValue;
  }
}

이 plunkr를 참조하십시오 : https://plnkr.co/edit/QGdou4?p=preview .

이 질문을보십시오 :


1
event.srcElement.attributes.id이유를 알고하지 않습니다 정의되지 않은 ...하지만 난을 발견 idevent.currentTarget.id
sreginogemoh

정말? 내 플 런커 봤어? , 내가 무엇을 사용하고 내 경우 (크롬)에서 ... 정의되지 아니에요 currentTarget정의되지 :-( 사용 않는 브라우저?
티에리 Templier

실제로 브라우저에 따라 srcElement 또는 대상입니다. 이 질문을 참조하십시오 stackoverflow.com/questions/5301643/...
티에리 Templier

4
Chrome :angular2.dev.js:23597 TypeError: Cannot read property 'nodeValue' of undefined
sreginogemoh

4
나는 이것을 사용하는 endupvar target = event.srcElement.attributes.id || event.currentTarget.id;
sreginogemoh

36

TypeScript 사용자의 경우 :

    toggle(event: Event): void {
        let elementId: string = (event.target as Element).id;
        // do something with the id... 
    }

5
이것은 제 생각에 받아 들여진 대답이어야합니다. 그러나 그것은 될 수 있습니다 const elementId: string = (event.target as Element).id;
Harish

1
나를 위해 공백을 반환합니다. 아니 null 또는 정의되지 않은 그러나 빈
대런 거리

감사. 콘솔에서 모두 볼 수 있는데 왜 target 또는 srcTarget의 속성을 직접 확인할 수 없는지 혼란 스러웠습니다. 요소로 캐스팅, duh.
Jeremy L

이것은 확실히 최고의 대답이어야합니다.
NobodySomewhere

19

마지막으로 가장 간단한 방법을 찾았습니다.

<button (click)="toggle($event)" class="someclass" id="btn1"></button>
<button (click)="toggle($event)" class="someclass" id="btn2"></button>

toggle(event) {
   console.log(event.target.id); 
}

이것은 까다로울 수 있습니다. 버튼에 HTML 콘텐츠가 있고 <button ...><i class="fa fa-check"></i></button>실제로 iFontAwasome 구성 요소 인 해당 요소를 클릭 하면 event.target은 요소 가 button아니라 i요소입니다.
Skorunka František

2
button요소 를 얻으려면 event.target.closest('button').
Skorunka František

18

당신은 정적 값 (또는에서 변수 전달할 수 *ngFor또는 무엇이든)

<button (click)="toggle(1)" class="someclass">
<button (click)="toggle(2)" class="someclass">

id그런 경우 를 사용하지 않는 것이 더 낫다고 생각 하십니까?
sreginogemoh

1
유일한 목적이 이벤트 매개 변수로 전달하는 것이라면 ID를 사용하지 않을 것입니다.
Günter Zöchbauer

1
사용하는 대신 id배열에서 인덱스를 선택하십시오. 우리가 가장 간단한 솔루션을 자주 간과하는 것은 종종 놀라운 일입니다.
Yuri

9

전체 이벤트를 통과 할 필요는 없습니다 (설명한 것보다 이벤트의 다른 측면이 필요하지 않은 경우). 사실 권장하지 않습니다. 약간의 수정만으로 요소 참조를 전달할 수 있습니다.

import {Component} from 'angular2/core';

@Component({
  selector: 'my-app',
  template: `
    <button #btn1 (click)="toggle(btn1)" class="someclass" id="btn1">Button 1</button>
    <button #btn2 (click)="toggle(btn2)" class="someclass" id="btn2">Button 2</button>
  `
})
export class AppComponent {
  buttonValue: string;

  toggle(button) {
    this.buttonValue = button.id;
  }

}

StackBlitz 데모

기술적으로 실제 요소를 전달 했으므로 클릭 한 버튼을 찾을 필요가 없습니다.

각도 안내


이것은 @Greg의 Angular 지침에 대한 링크에서 언급 한 정답이어야합니다!
Chrizzldi

4

당신이 때 HTMLElement이없는 id, name또는 class전화로,

그런 다음 사용

<input type="text" (click)="selectedInput($event)">

selectedInput(event: MouseEvent) {
   log(event.srcElement) // HTMInputLElement
}

2

다음과 같이 간단하게하십시오 : (여기에 두 가지 방법으로 예제가 있습니다)

import {Component} from 'angular2/core';

@Component({
    selector: 'my-app', 
    template: `
      <button (click)="checkEvent($event,'a')" id="abc" class="def">Display Toastr</button>
      <button (click)="checkEvent($event,'b')" id="abc1" class="def1">Display Toastr1</button>
    `
})
export class AppComponent {
  checkEvent(event, id){
    console.log(event, id, event.srcElement.attributes.id);
  }
}

데모 : http://plnkr.co/edit/5kJaj9D13srJxmod213r?p=preview


4
event.srcElement.attributes.id왜 모르는 내 경우에 정의되지 않은 ...하지만 난을 발견 idevent.currentTarget.id
sreginogemoh

의 개체 단지 체크 아웃 event당신이 볼 수있는 해고id
Pardeep 자이나교

1
@sreginogemoth 당신도 확인할 수 있습니다 : event.target.id그것은 또한 id 값을 가질 수 있습니다
Arthur

2

부모로부터 상속받은 인터페이스 HTMLButtonElement 를 사용할 수 있습니다.HTMLElement !

이렇게하면 자동 완성을 할 수 있습니다 ...

<button (click)="toggle($event)" class="someclass otherClass" id="btn1"></button>

toggle(event: MouseEvent) {
    const button = event.target as HTMLButtonElement;
    console.log(button.id);
    console.log(button.className);
 }

W3C (World Wide Web Consortium) 설명서에서 HTMLElement의 모든 목록을 보려면

StackBlitz 데모


0

id각도 6의 버튼 속성에 액세스 하려면 다음 코드를 따르십시오.

`@Component({
  selector: 'my-app',
  template: `
    <button (click)="clicked($event)" id="myId">Click Me</button>
  `
})
export class AppComponent {
  clicked(event) {
    const target = event.target || event.srcElement || event.currentTarget;
    const idAttr = target.attributes.id;
    const value = idAttr.nodeValue;
  }
}`

당신 id의 가치,

의 값은 value입니다 myId.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.