//限制文本框只能输入数字事件
$("#"+checkNumControls[j]).keyup(function(){$(this).val($(this).val().replace(/[^\d\.-]+/,""));});
?
//用于比较数字 eval(9)<eval(10)
eval()函数用于在不引用任何特定对象的情况下计算代码字符串。
?
jQuery帮助之筛选 过滤 map(callback)
<p><b>Values: </b></p>
<form>
??<input type="text" name="name" value="John"/>
??<input type="text" name="password" value="password"/>
??<input type="text" name="url" value="http://ejohn.org/"/>
</form>
<form>
??<input type="text" name="name" value="John"/>
??<input type="text" name="password" value="password"/>
??<input type="text" name="url" value="http://ejohn.org/"/>
</form>
代码:
$("p").append( $("input").map(function(){
??return $(this).val();
}).get().join(", ") );
??return $(this).val();
}).get().join(", ") );
结果:<p>John, password, http://ejohn.org/</p>
?
格式化日期
(new Date()).parse(content.updateTimeDate).format('yyyy-mm-dd hh:nn:ss')
?