私はこのようなコードを持っています。
// HTML file
<div class="box" ng-click="displayinfo()">
click here to display info about this page.
<div class="content" ng-click="displaytext()">
Click here to display text.
</div>
click here to display info about this page.
</div>
// JS file
$scope.displayinfo = function()
{
alert('info');
}
$scope.displaytext = function()
{
alert('Text');
}
「ここをクリックしてテキストを表示」をクリックすると、両方の関数が呼び出され、「テキスト」と「情報」が表示されます。しかし、ここに「情報」を表示したくありません。html div 構造を変更できません。
どうやってするか?