Posted in Javascript onAugust 01, 2016
AngularJS ng-href 指令
AngularJS 实例
使用 AngularJS 设置添加链接:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app=""> <div ng-init="myVar = 'http://www.runoob.com'"> <h1>菜鸟教程</h1> <p>访问 <a ng-href="{{myVar}}">{{myVar}}</a> 学习!</p> </div> <p>该实例可以使用了原生的 href 属性,但在 AngularJS 中, ng-href 属性更安全。</p> </body> </html>
定义和用法
ng-href 指令覆盖了原生的 <a> 元素 href 属性。
如果在 href 的值中有 AngularJS 代码,则需要使用 ng-href 而不是 href。
ng-href 指令确保了链接是正常的,即使在 AngularJS 执行代码前点击链接。
语法
<a ng-href="string"></a>
<a> 元素支持该指令。
参数值
值 | 描述 |
---|---|
expression | 字符串,表达式的执行结果 |
以上就是对AngularJS no-href资料的整理,后续继续补充,希望能帮助学习AngularJS的同学。
AngularJS基础 ng-href 指令用法
- Author -
lqh声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@