JQUERY1.9学习笔记 之基本过滤器(四) 首元素选择器

首元素选择器:
jQuery( ":first" )

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>first demo</title>
<style>
td{
color:blue;
font-weight:bold;
}
</style>
<script src="js/jquery-1.9.1.min.js"></script>
</head>
<body>
<table>
<tr><td>Row 1</td></tr>
<tr><td>Row 2</td></tr>
<tr><td>Row 3</td></tr>
</table>
<script>
$("tr:first").css("font-style","italic");
</script>
</body>
</html>

JQUERY1.9学习笔记 之基本过滤器(四) 首元素选择器

上一篇:JS--我发现,原来你是这样的JS(二)(基础概念--躯壳篇--不妨从中文角度看js)


下一篇:Android异常之 unable to write jarlist cache file