1、$('#showDiv'): id选择器,相当于javascript中的documentgetElementById("showDiv");
2、$("oneclass") 类别选择器
3、$('p:odd')、$('p:even') 选择奇、偶行中p标记
4、$('td:nth-child(1)') 选择表格中的第一个单元格
5、$('div>d') 选择div 下的所有子元素d 但是不包含子孙元素
6、$('a[href=pdf]') 选择所有超链接属性为pdf的href
7、$('div:has(div)') 选取至少包括一个子div 的div 元素
在jquery 中有去掉用户输入的前后的空格的函数 trim()
自定义添加$函数
$.fn.extend({
alertWhileClick:function(){
$(this).click(function(){
console.log($(this).attr("id"));
alert($(this).val());
});
}
});
$("#input1").alertWhileClick(); 解决$冲突
var $j=jQuery.noConfilict();