AngularJS ng-open 指令

返回到:AngularJS 参考手册

定义和用法

ng-open 指令用于设置 details 列表的 open 属性。

如果 ng-open 的表达式返回 true 则 details 列表是可见的。

语法

<details ng-open="expression">...</details>

<details> 元素支持该指令。

参数值

描述
expression如果表达式为 true 则会设置 details 的 open 属性。

AngularJS 实例

通过点击 checkbox 显示或隐藏 <details> 列表:

<!DOCTYPE html>
<html>
<head>
	<title>AngularJS 实例 | Web176教程网web176.com</title>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script>
</head>
<body ng-app="">

点击这里显示 details 列表: <input type="checkbox" ng-model="showDetails"><br>
<br>

<details ng-open="showDetails">
  <summary>Web176教程网!</summary>
  <p> - Web176教程网</p>
</details>

<p><b>注意:</b> 目前只有 Opera, Chrome, 和 Safari 浏览器支持 details 标签。</p>

</body>
</html>

返回到:AngularJS 参考手册

作者:terry,如若转载,请注明出处:https://www.web176.com/angularjsapi/6429.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2022年8月11日 下午3:56
下一篇 2022年8月11日 下午4:18

相关推荐

发表回复

登录后才能评论