标签:log asc css html rip for 元素选择器 element 支持
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;}
$("*")
标签:log asc css html rip for 元素选择器 element 支持
原文地址:http://www.cnblogs.com/luhailin/p/6780100.html