简单的javaScript和jQuery使用日记

1.jQuery判断是否拥有某个class

var isSelected = $(.search_list_tool).hasClass('selected');

2.jQuery隐藏或显示某个元素

方法一:
$('#id').css('display','none');
$('#id').css('display','block');
方法二:
$('#id').hide();
$('#id').show();

3.jQuery判断checkbox是否选中

1.$('#checkbox-id').is(':checked');
2.$("input[name='collectionProductAll']").prop('checked');
3.$("input[name='collectionProductAll']").attr('checked');

4.jQuery清楚style的样式

$("#show").removeAttr("style");
$("#show").attr("style","");

5.获取display的当前状态

var isDisplayChecked = $(".administration")[0].style.display;

 

你可能感兴趣的:(jQuery,javaScript)