jquery 选择器
Posted DOIT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 选择器相关的知识,希望对你有一定的参考价值。
1. id
<div id="box">hello</box>
$("#box").css("color","red");
2. class
<div class="box">1</div>
<div class="box">2</div>
$(".box").css("color","red"); // 所有.box的集合 , 都加上字体红色
//如果是javascript,给集合的元素都加上某种样式,要加循环:
// divs=document.getElementsByClassName("box"); ClassName 低版本ie不支持
// for(var i=0; i<divs.length;i++){
// divs[i].style.color="red";
// }
3. 元素选择器
<p>hello</p>
<h1>你好</h1>
<div>China</div>
$("p").html("java");
$("h1")
$("div")
4. 全选择器 *
如css中
*{padding:0;margin:0;}
$("*")
以上是关于jquery 选择器的主要内容,如果未能解决你的问题,请参考以下文章