1、jQuery选择器
$(‘*’).css(‘background’,’red’); //选择本页所有元素
$(this.getElementByXid(“div1”)).css(‘background’,’red’); //选择Xid值为div1的元素
$(‘li’).css(‘background’,’red’); //返回所有li元素请输入代码
$(‘.x-col-10’).css(‘background’,’red’); //返回所有class类为.x-col-10的元素
$(“.x-titlebar-left”).css(‘background’,’red’); //返回class为x-titlebar-left的元素
$(“[src]”).css(‘width’,’290px’); //返回所有带src属性的元素