使用ngRoute使jquery tab使用angularjs不起作用

make jquery tab using ngRoute angularjs doesn't work

本文关键字:使用 angularjs 不起作用 tab jquery ngRoute      更新时间:2023-09-26

我尝试在标签1中添加项目,然后导航到下一个标签,当我回来的时候,事情会被重置。

http://plnkr.co/edit/ETxaZ2ESI9ftCOUSRDcP?p =

预览

使用angular构建jquery TAB的最佳方法是什么?Ngshow和hide并不友好,因为它使视图变得复杂和混乱。

我建议使用AngularUI团队编写的Bootstrap组件。你可以找到一组很棒的Twitter Bootstrap组件,包括Tabs控件。

例子:

<div ng-controller="TabsDemoCtrl">
  <p>Select a tab by setting active binding to true:</p>
  <p>
    <button class="btn btn-default btn-sm" ng-click="tabs[0].active = true">Select second tab</button>
    <button class="btn btn-default btn-sm" ng-click="tabs[1].active = true">Select third tab</button>
  </p>
  <p>
    <button class="btn btn-default btn-sm" ng-click="tabs[1].disabled = ! tabs[1].disabled">Enable / Disable third tab</button>
  </p>
  <hr />
  <tabset>
    <tab heading="Static title">Static content</tab>
    <tab ng-repeat="tab in tabs" heading="{{tab.title}}" active="tab.active" disabled="tab.disabled">
      {{tab.content}}
    </tab>
    <tab select="alertMe()">
      <tab-heading>
        <i class="glyphicon glyphicon-bell"></i> Alert!
      </tab-heading>
      I've got an HTML heading, and a select callback. Pretty cool!
    </tab>
  </tabset>
  <hr />
  <tabset vertical="true" type="navType">
    <tab heading="Vertical 1">Vertical content 1</tab>
    <tab heading="Vertical 2">Vertical content 2</tab>
  </tabset>
  <hr />
  <tabset justified="true">
    <tab heading="Justified">Justified content</tab>
    <tab heading="SJ">Short Labeled Justified content</tab>
    <tab heading="Long Justified">Long Labeled Justified content</tab>
  </tabset>
</div>

js:

var TabsDemoCtrl = function ($scope) {
  $scope.tabs = [
    { title:"Dynamic Title 1", content:"Dynamic content 1" },
    { title:"Dynamic Title 2", content:"Dynamic content 2", disabled: true }
  ];
  $scope.alertMe = function() {
    setTimeout(function() {
      alert("You've selected the alert tab!");
    });
  };
  $scope.navType = 'pills';
};

实例:http://plnkr.co/edit/ExDYMWfK0FKgk0IDw47q?p=preview