作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是angularjs的菜鸟。我目前正在处理一个页面,我应该在该页面上显示各种形式的选项卡。我已经开发了一个代码,可以在单击按钮时激活另一个选项卡。这是 html
<!DOCTYPE html>
<html ng-app="ui.bootstrap.demo">
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-animate.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.14.3.js"></script>
<script src="example.js"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div ng-controller="TabsDemoCtrl">
<uib-tabset vertical="true" type="pills">
<p>Select a tab by setting active binding to true:</p>
<p>
<button type="button" class="btn btn-default btn-sm" ng-click="tabs[0].active = true">Select second tab</button>
<button type="button" class="btn btn-default btn-sm" ng-click="tabs[1].active = true">Select third tab</button>
</p>
<uib-tab ng-repeat="tab in tabs" heading="{{tab.title}}" active ="tab.active" disable="tab.disabled">
{{tab.content}}
</uib-tab>
</uib-tabset>
<hr />
</div>
</body>
</html>
这是 controller.js
angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);
angular.module('ui.bootstrap.demo').controller('TabsDemoCtrl', function ($scope, $window) {
$scope.tabs = [
{ title:'Dynamic Title 1', content:'Dynamic content 1' },
{ title:'Dynamic Title 2', content:'Dynamic content 2'}
];
});
这是 plunker 链接.. http://plnkr.co/edit/v23qWGzqbw3Y5o51KhHf?p=preview
我需要的是在“动态内容”中获取按钮,即当我们单击 tab1 内容中的按钮时,它会激活另一个选项卡。我还必须包含许多其他 html 元素。我可以通过哪些方法实现这一目标?
最佳答案
请看https://docs.angularjs.org/api/ng/directive/ngInclude .
在“tab.content”中,你应该有模板 url,并像 Angular 文档中描述的那样使用它们。
<uib-tab ng-repeat="tab in tabs" heading="{{tab.title}}" active ="tab.active" disable="tab.disabled">
<div ng-include="tab.content"></div>
</uib-tab>
关于javascript - 如何在 angularjs tabset 中呈现 html 内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33565465/
我是一名优秀的程序员,十分优秀!