欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery 选择器

程序员文章站 2022-07-13 13:11:48
...

参考资料:http://www.w3school.com.cn/jquery/jquery_ref_selectors.asp

 

jQuery 选择器

#id 		$("#lastname") 	id=lastname 的元素
.class 		$(".intro") 	所有 class="intro" 的元素
element     $("p") 		    所有 <p> 元素

 

document.getElementById('searchProject').style.position='absolute';
document.getElementById('searchProject').style.display='none'; 

 

css() 方法返回或设置匹配的元素的一个或多个样式属性。

$("#project_id").css("display","none");
$("p").css({
  "color":"white",
  "background-color":"#98bf21",
  "font-family":"Arial",
  "font-size":"20px",
  "padding":"5px"
  });

 

attr() 方法设置或返回被选元素的属性值。

$("#monday").attr("tabindex",monday_tabindex); 

 

text() 方法返回或设置被选元素的内容 (inner HTML)。

$("#project_id").text("");

 

 "00:00" replace by "24:00" in input field

var bookingTo_list = $("input[name='to']");
for(var i=0;i<bookingTo_list.length;i++){
	var toValue = bookingTo_list[i].value;
	if(toValue=="00:00"){
		bookingTo_list[i].value = "24:00";
	}
}