Angular.js学习笔记 (二)

2020-09-03 09:43:17 浏览数 (1)

用A链接对象解析url的组成 var url = 'https://www.baidu.com:8080/aaa/1.html?id=10#name'; var aLink = document.createElement('a'); aLink.href = url; console.log(aLink);//<a href="https://www.baidu.com:8080/aaa/1.html?id=10#name"></a> console.log(aLink.search);//?id=10 console.log(aLink.hash);//#name ... // protocol: https // host: www.baidu.com:8080 // hostname: www.baidu.com // port: 8080 // pathname: /aaa/1.html // search: ?id=10 // hash: #name JSON就是用字符串描述对象的方式

angular.js常用指令: AngularJS 属性以 ng- 开头,但是您可以使用 data-ng- 来让网页对 HTML5 有效。

index; (补充:name.startsWith(lastname):以lastname为开头的name的值为true----这是H5新增元素) ng-class:ng-class指令可以设置一个键值对,用于决定是否添加一个特定的类名,键为class名,值为bool类型表示是否添加该类名 :ng-class="{red:

0 人点赞