
前端框架
yfwangjd
这个作者很懒,什么都没留下…
展开
-
<div class="card">学习
### bootstrap框架的一个标签 刚看时挺困惑的,不知道是什么技术,看了英文解释才知道是一种容器 A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background翻译 2017-08-17 11:14:13 · 1468 阅读 · 0 评论 -
bootstrap modal在项目的实现思路
原来的做法是var isDelete = confirm(“请确认删除”);if(isDelete==true){}缺点是系统自带的弹出框不好看。要解决以下问题:1:由于项目中用typescript,onclick=”xxx()” ngclick=”xxx()”无法调用typescript中的方法,(click)=”xxx()”可以向typescript中的函数传参数 2:网上找的js优化框总是原创 2017-08-25 16:45:00 · 296 阅读 · 0 评论 -
angular框架用于文本框取值
'<input type="text" id="name" name="name"/><button id="name_confirm" class="confirm" (click)="searchByName(name)">确定</button> searchByName取的值不是name <input type="text" id="name" [(ngModel)]="name"/> <bu原创 2017-08-25 17:07:40 · 3123 阅读 · 0 评论