摘要:
http://blog.csdn.net/u011606714/article/details/44649159 将文件使用记事本保存成ANSI格式或者UTF格式(根据需要)即可。 设置格式: html : js : css : 阅读全文
摘要:
ng-include: 官网实例: 选择的是template1.html时会显示ngincludetemplate1.html页面的内容:相当于<div ng-include=" 'ngincludetemplate1.html' "></div> 选择的是template2.html时会显示ngi 阅读全文
摘要:
http://www.tuicool.com/articles/uyuuYz 阅读全文
摘要:
https://www.zybuluo.com/bornkiller/note/6023 阅读全文
摘要:
ng-bind: 只能绑定一个变量 在AngularJS中显示模型中的数据有两种方式: 一种是使用花括号插值的方式: 另一种是使用基于属性的指令,叫做ng-bind: ng-bind-template: 可绑定多个变量 输出结果: ngBindTemplate(ng-bind-template)与n 阅读全文
摘要:
selection的值不同会显示不同的数据; 阅读全文
摘要:
从结果可以看出使用ng-if时DOM会被移除,所以使用显示隐藏时要使用ng-show ng-hide 阅读全文
摘要:
html中的属性很多,同样可以使用angularjs来定义: ng-bind中使用字符可以将文字显示出来 阅读全文
摘要:
session和cookie的区别:session运行在服务器端,cookie运行在客户端 cookie的结构:cookie是以键值对的形式保存的,即key=value的格式,各个cookie之间一般是以“;”分隔。 在控制台打印document.cookie可以看到如下结果: JS设置cookie 阅读全文
摘要:
1、输入框中不能输入英文双引号: ng-pattern='/^[^\"]*$/' 只要输入的内容有英文双引号就提示错误信息 *:匹配前面的子表达式零次或多次 ^: 匹配输入字符串的开始位置 ^: 在方括号表达式中使用,表示不接受该字符集合 $:匹配输入字符串的结尾位置 2、输入框中只能输入数字(ty 阅读全文