Bootstrap Table 中文文档(完整翻译版)
摘要:表格参数: 名称标签类型默认描述 - data-toggle String ‘table’ 不用写 JavaScript 直接启用表格。 classes data-classes String ‘table table-hover’ 表格的类名称。默认情况下,表格是有边框的,你可以添加 ‘table
阅读全文
posted @
2019-04-22 15:04
紫炎
阅读(432)
推荐(0)
JS 有序键值Map对的实现
摘要:构造: function Map() { this.keys = new Array(); this.data = new Array(); //添加键值对 this.set = function (key, value) { if (this.data[key] == null) {//如键不存在
阅读全文
posted @
2015-11-18 09:50
紫炎
阅读(3837)
推荐(1)
CSS 颜色代码大全
摘要:CSS颜色代码大全 FFFFFF #DDDDDD #AAAAAA #888888 #666666 #444444 #000000 #FFB7DD #FF88C2 #FF44AA #FF0088 #C10066 #A20055 #8C0044 #FFCCCC #FF8888 #FF3333 #FF00
阅读全文
posted @
2013-07-18 10:49
紫炎
阅读(419)
推荐(0)
event.keyCode用法及列表
摘要:HTML 用户名:<input type="text" id="UserAccount" onKeyPress="JumpByEnter(UserPwd)" /> 密码:<input name="UserPwd" type="password" onKeyPress="IsEnterKeyPress
阅读全文
posted @
2013-07-18 10:30
紫炎
阅读(245)
推荐(0)