html各种弹出框和提示框
摘要:控制台输出 console.log() console.info() confirm() alert() promt() 提示对话框
阅读全文
posted @
2018-08-08 18:16
小破孩楼主
阅读(23090)
推荐(0) 编辑
js判断为空
摘要:function isEmpty (va){ if("undefined" == va){ return true; } if(null == va){ return true; } if("" == va){ return true; } return false; }
阅读全文
posted @
2018-08-08 18:07
小破孩楼主
阅读(151)
推荐(0) 编辑
复选框
摘要:1、 获取选中的值 https://www.cnblogs.com/sunxirui00/p/7498014.html parseFloat()
阅读全文
posted @
2018-08-08 18:04
小破孩楼主
阅读(124)
推荐(0) 编辑
table的常用属性
摘要:Table属性: Cellspacing:单元格与单元格之间或者单元格与表格之间的 距离。 Cellpadding:单元格边框与内容之间的距离 Colspan:跨列、合并列。 Rowspan:跨行,行合并。
阅读全文