Skip to content

Instantly share code, notes, and snippets.

@e7h4n
Created January 26, 2014 02:10
Show Gist options
  • Select an option

  • Save e7h4n/8627117 to your computer and use it in GitHub Desktop.

Select an option

Save e7h4n/8627117 to your computer and use it in GitHub Desktop.
<div>
<div>
<a href="" ng-click="expanded = true" ng-if="!expanded">展开</a>
<a href="" ng-click="expanded = false" ng-if="expanded">收起</a>
{{user.name}}
</div>
<div ng-if="expanded">
{{user.info}}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment