Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
非表示の DOM 要素がいくつかあります。
<label ng-show="input">Namn</label>
-属性を使用して更新したいと思いますng-click。どのような表現を使用すればよいですか?
ng-click
<!-- some visible element in the same scope --> <div ng-click="input = true">Bla Bla</div> <!-- OR --> <div ng-click="input = !input">Bla Bla</div>