X5.3中常用到的jQuery整理

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属性的元素

    原文作者:ecoolper
    原文地址: https://segmentfault.com/a/1190000005065691
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞