1、jquery获取被选中的多选框的值
$('input[type=checkbox]:checked').each(function(){
alert($(this).val());
});
2、正则表达式
匹配日期 2010-11-21
var regexp = /^\d{4}-\d{2}-\d{2}$/;
if(!regexp.exec(date)){
alert('日期格式不正确');
}
3、javascript判断是否为数字
用正则表达式判断是好的方法
4、javascript中字符串不会自动转成数字
//字符串转整数
parseInt(str)
//字符串转浮点数
parseFloat(str)
5、判断多选框是否被选中
//选中
$('#id').is(':checked') == true
//没有选中
$('#id').is(':checked') == false
6、选中多选框和取消选中多选框
//选中
$('#id').attr('checked', 'checked')
//取消选中
$('#id').attr('checked', false)
7、jquery遍历javascript数组
// array 数组
// index 数组索引
// value 数组元素,不需要用val()函数获取值
$.each(array, function(index, value){
});
8、jquery遍历dom
// items是从页面上checkbox获取的jquery对象
items.each(function(i){
// i是索引
var value = $(this).val();
});
9、jquery设置style:display
$('#id').css('display', 'none');
if($('#id')[0].style.display == '')
10、jquery随机访问数组元素
//访问数组下标为0的元素
$("#page a").eq(0)