Created
October 7, 2012 09:15
-
-
Save MaySnow/3847619 to your computer and use it in GitHub Desktop.
checkbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//根据选中的长度来判断是否有选中的,真是个不错的办法 | |
if($(".check:checked").length == 0) { | |
hideChoose(); | |
} else { | |
showChoose(); | |
} | |
$(".check:checked")//所有选中的复选框 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment