AngularJs练习Demo3
Posted 编程猴子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AngularJs练习Demo3相关的知识,希望对你有一定的参考价值。
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>AngularJS事件指令</title> <script type="text/javascript" src="~/Scripts/angular.js"></script> </head> <body> <h1>AngularJS事件指令</h1> <div ng-app="myApp"> <div ng-controller="firstController"> <div ng-click="run()">点击</div> <input type="checkbox" ng-model="sel" /> <select> <option>111</option> <option ng-selected="sel">222</option> </select> <p> <input type="checkbox" ng-change="change()" ng-model="c" /> </p> <p> <input type="text" value="你好" ng-copy="aaa=‘按下复制键的时候执行的事件‘" />{{aaa}} </p> <p> <input type="text" value="你好" ng-cut="bbb=‘按下剪切键的时候执行的事件‘" />{{bbb}} </p> <p> <input type="text" value="你好" ng-paste="ccc=‘按下粘贴键的时候执行的事件‘" />{{ccc}} </p> <p> <div ng-bind="text"></div> <div ng-cloak></div> {{text}} <div ng-non-bindable> {{text}} @*n {{text}}就会原样输出*@ </div> </p> </div> </div> <script type="text/javascript"> //ng-bind 和ng-cloak 都是为了防止页面闪烁 var app = angular.module("myApp", []); app.controller("firstController", function ($scope) { $scope.text = "PhoneGap中文网"; $scope.run = function () { alert("On-Click"); }, $scope.change = function () { if ($scope.c) { alert("改变"); } else { alert($scope.c); } } }); </script> </body> </html>
以上是关于AngularJs练习Demo3的主要内容,如果未能解决你的问题,请参考以下文章
从 AngularJS url 中删除片段标识符(# 符号)