摘要:
正则表达式匹配IP 阅读全文
摘要:
看官赏点饭钱可好? 阅读全文
摘要:
为了让table具有更好的可读性,我们可以将表格的header信息克隆一份到表格的底部,这种特效通过JQuery就很容易实现: 阅读全文
摘要:
1、根据url来加载图片: 2、定义callback函数: 3、调用上面的方法,代码如下: 阅读全文
摘要:
var MD5 = function (string) { function RotateLeft(lValue, iShiftBits) { return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits)); } function AddUnsign 阅读全文
摘要:
<script> function AuthPasswd(string) { if(string.length >=6) { if(/[a-zA-Z]+/.test(string) && /[0-9]+/.test(string) && /\W+\D+/.test(string)) { notice 阅读全文
摘要:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" c 阅读全文
摘要:
/* 往指定时间字符串上加时间间隔,获得新的时间字符串 * startDateStr:开始时间字符串,类似"2015-7-20 17:26:00" * durationNumStr:持续时间数 * durationTypeStr:持续时间类型 * 返回类似:2015-7-20 17:26:00 * * */ function getEndDate(start... 阅读全文
摘要:
通过AJAX异步减少网络内容传输,而JSON则可以把传输内容缩减到纯数据;然后利用jQuery内置的AJAX功能直接获得JSON格式的数据;在客户端直接绑定到数据控件里面,从而达到最优。 阅读全文
摘要:
${item.note} //自动计算长度,并剔除html元素 $(".tits").each(function(i) { var leg = 280; $(this).html($(this).text()); var copyThis = $(this.cloneNode(true)).hide().c... 阅读全文