摘要: JS正则表达式获取分组内容。支持多次匹配的方式:var testStr = "now test001 test002"; var re = /test(\d+)/ig; var r = ""; while(r = re.exec(testStr)) { alert(r[0] + " " + r[1]... 阅读全文
posted @ 2014-06-24 03:15 un123 阅读(3254) 评论(0) 推荐(0) 编辑
摘要: 获取某个元素上的事件,jquery的给元素绑定的事件可以用data方法取出来.通过$(element).data("events")来获取// 比如给一个button绑定两个click事件$("button").click(function() { alert("1") });$("button")... 阅读全文
posted @ 2014-06-24 03:11 un123 阅读(4230) 评论(0) 推荐(0) 编辑
摘要: 将浮点数转换成整数方法有很多,分享三种常用方法。Summary暂时我就想到3个方法而已。如果读者想到其他好用方法,也可以交流一下parseInt位运算符Math.floor Math.ceilDescription一、parseInt1. 实例parseInt("13nash");//13parse... 阅读全文
posted @ 2014-06-24 03:05 un123 阅读(6477) 评论(0) 推荐(1) 编辑