angularjs-隐藏 HTML 元素

前端之家收集整理的这篇文章主要介绍了angularjs-隐藏 HTML 元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<!DOCTYPE html>

<html>

<head>

<Meta charset="utf-8">

<Meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<link rel="stylesheet" href="">

</head>

<body>

<div ng-app="myApp" ng-controller="personCtrl">

<button ng-click="toggle()">显示/隐藏</button>

<p ng-hide="myVar">

名:<input type="text" ng-model="firstName"><br/>

姓:<input type="text" ng-model="lastName"><br/>

<br>

Full Name:{{firstName + " " + lastName}}

</p>

</div>

</body>

<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>

<script>

var app = angular.module('myApp',[]);

app.controller('personCtrl',function($scope){

$scope.firstName = "John";

$scope.lastName = "Doe";

$scope.myVar = false;

$scope.toggle = function(){

$scope.myVar = !$scope.myVar;

}

});

</script>

</html>

原文链接:https://www.f2er.com/angularjs/148174.html

猜你在找的Angularjs相关文章