This time I will show you how to use AngularJS to switch tabs and tabs. What are the things to note?The following is a practical case, let’s take a look. .
Tab one:
##JavaScript html css
nbsp;html> <meta> <title> js标签页tab切换</title> <style> #p1 .active{ background:blue; } #p1 p{ width:200px; height:200px; background:gray; border:1px solid black; display:none; } </style> <script> window.onload=function (){ var op=document.getElementById('p1'); var aBtn=op.getElementsByTagName('input'); var ap=op.getElementsByTagName('p'); for(var i=0;i<aBtn.length;i++){ //遍历p1中的按钮 aBtn[i].index=i; //给aBth[]添加自定义属性 aBtn[i].onclick=function (){ for(var i=0;i<aBtn.length;i++){ //遍历按钮,将class清除 aBtn[i].className=''; ap[i].style.display='none'; } this.className='active'; ap[this.index].style.display='block'; } } } </script> <p> <input> <input> <input> <input> </p><p>111</p> <p>222</p> <p>333</p> <p>444</p>
Tab two:
angularjs directives: ng-class, ng-click, ng-ifnbsp;html> <meta> <title>AngularJS标签页tab切换</title> <style> .active { background-color: orange; } </style> <script></script> <p> <button>张三</button> <button>李四</button> <button>王五</button> </p> <p> </p><p>张三的个人信息</p> <p>李四的个人信息</p> <p>王五的个人信息</p> <script> var app = angular.module('s1.app', []); app.run(function ($rootScope) { $rootScope.data = { current: "1" // 1代表张三,2代表李四,3代表王五 }; $rootScope.actions = { setCurrent: function (param) { $rootScope.data.current = param; } } }) </script>
Tab three:
angularjs command: ng-class, ng-click, ng-shownbsp;html> <meta> <title> <script></script> </title> <section> <ul> <li> <a>1111111111</a> </li> <li> <a>2222222222</a> </li> <li> <a>33333333333</a> </li> </ul> <!--是否点击--> {{panel.isSelected(1)}} {{panel.isSelected(2)}} {{panel.isSelected(3)}} <p> </p> <h1 id="我是">我是1111111111111111111111</h1> <p> </p> <h1 id="我是">我是22222222222222222</h1> <p> </p> <h1 id="我是">我是3333333333333333333333</h1> </section> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function () { this.tab = 2;/*设置默认*/ this.selectTab = function (setTab) {/*设置tab点击事件*/ this.tab = setTab; }; this.isSelected = function (checkedTab) {/*页面的切换*/ return this.tab === checkedTab; } }); </script>
Tab four:
angularjs commandThe second and third methods are derived from the improvement of the following code, and the effects are the same .nbsp;html> <meta> <title>AngularJS标签页tab切换</title> <script></script> <section> <ul> <li> <a>1111111111</a> </li> <li> <a>2222222222</a> </li> <li> <a>33333333333</a> </li> </ul> <!--是否点击--> {{tab===1}} {{tab===2}} {{tab===3}} <p> </p> <h1 id="我是">我是1111111111111111111111</h1> <p> </p> <h1 id="我是">我是22222222222222222</h1> <p> </p> <h1 id="我是">我是3333333333333333333333</h1> </section> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function () { }); </script>
But there is a difference between ng-show and ng-if
The first difference is,
ng-if This dom node is only created when the subsequent expression is true.
ng-show is created initially, use
display:block and
display:none to control display or non-display.
The second difference is that
ng-if will (implicitly) generate a new scope,
ng-switch The same goes for ,
ng-include, etc. that will dynamically create an interface.
ng-model in
ng-if , and binding this model to another display in the outer layer p Area, when the inner layer changes, the outer layer will not change synchronously, because there are already two variables at this time.
<p>{{name}}</p> <p> <input> </p>ng-show does not have this problem because it does not come with a first-level scope. The way to avoid this kind of problem is to always bind the elements in the page to the properties of the object (
data.x) rather than directly to the basic variables (
x)superior. Scope in AngularJS
How to deal with the failure to install nmp Taobao image on Mac
How to operate Koa2 WeChat public account development Setting up a local development and debugging environment
The above is the detailed content of How to implement tab switching using AngularJS. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version
Recommended: Win version, supports code prompts!

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
