博客列表 >jquery 常用选择器 4月3日作业

jquery 常用选择器 4月3日作业

美丽城堡
美丽城堡原创
2018年04月06日 10:09:28700浏览

1、id 选择器

<p id="text">段落</p>

$('#text').css('color','#fff');

2、类选择器

<p class="text">段落</p>

$('.text').css('backgroundColor','skyblue');

3、标签选择器

<p>段落</p>

$('p').css('textAlign','center');

4、后代选择器

<p class="text"><img src="a.png" alt="">段落</p>

$('.text img').css('width',200);

5、子元素选择器

<p class="text">
    <img src="a.png" alt="">
    <p class="content">
        <img src="b.png" alt="">
    </p>
</p>

$('.text > img').css('width',300)

6、属性选择器

<form>
    <input type="text" name="text">
</form>

$('input[name=text]').css("placeholder",'');

7、清除元素上的内联样式 style 属性,删除元素上的属性

$('.text').removeAttr('style')

8、删除元素上的类属性

$('.text').removeClass();
$('.text').removeClass('aa');

9、为元素添加类属性

$('.text').addClass('red');


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议