记不住的jQuery

记不住的jQuery

1.特效片

1.动画提示 显示0.5秒然后隐藏

1
$("#danger").fadeIn(500).delay(1000).fadeOut(500);

2.选择篇

1.设置多选框能单选

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//设置多选按钮能够单选
$(":checkbox").each(function(){
var btn = $("#delbtn");
$(this).click(function () {
if ($(this).is(":checked")) {
//$('#cb').prop('checked') 一样的效果

$(":checkbox").each(function () {
$(this).prop("checked", false);
});
$(this).prop("checked", true);
btn.attr("disabled",false);
}else{
btn.attr("disabled",true);
}
});
});

2.选取已经选中的复选框

1
$("#cloudAll input[name='mvId']:checked")

3方法篇

1.原生JavaScript设置睡眠时间

1
2
3
4
5
6
7
8
9
function sleep(numberMillis) {
var now = new Date();
var exitTime = now.getTime() + numberMillis;
while (true) {
now = new Date();
if (now.getTime() > exitTime)
return;
}
}