jQuery ?? parent() ???
jQuery? ??? ?????. ???? ?? ? ??? ?? ??? ??? ?? ???(?? ??? ?? ??) ?? parent() ???? ??? ? ????. ? ??? ? ?? ??? ?????.
?? ?? ??? ?????.
<div class="div">
?????????????????????????????????????????????????????????????????????????????????????????li> </ul>
</div>
ul? ?? ?? div? $(ul).parent()? ????. ?? ??? ??????.
??? ???????
<!DOCTYPE html> <html> <head> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script> </head> <body> <div><p>Hello</p></div> <div class="selected"><p>Hello Again</p></div> <script> $("p").parent(".selected").css("background", "yellow"); </script> </body> </html>