Сообщение от RodgerFox
|
А как взять дочерний дочернего элемента?
|
Все по аналогии...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
.on {
color: red;
background-color: yellow;
}
</style>
<script type="text/javascript">
$(document).ready(function (){
$('ul > li:first-child > p').addClass('on');
});
</script>
</head>
<body>
<ul>
<li><p><input />item 1</p></li>
<li><p><input />item 2</p></li>
</ul>
<ul>
<li><p><input />item 1</p></li>
<li><p><input />item 2</p></li>
</ul>
</body>
</html>