次の行があります。
<a href="#" id="12345" data-ng-click="ShowId()">
私のコントローラーには:
$scope.ShowId = function(){
alert('clicked element id in here: 12345');
};
コントローラのShowId関数で、クリックされた要素のID(私の場合では12345)にアクセスするにはどうすればよいですか?
バインドがng-repeat内にないため、アイテムIDなどにアクセスできます。
私はこれを解決しました:
<a href="#" id="12345" data-ng-click="ShowId($event)">
$scope.ShowId = function(event)
{
alert(event.target.id);
};
<button data-id="101" ng-click="showDetail($event)">click Me</button>
$scope.showDetail = function(event)
{
console.log($(event.target).attr("data-id"));
}