parents()用法

来源:互联网 发布:淘宝虚拟物品怎么发布 编辑:程序博客网 时间:2024/06/07 03:34
<!doctype html><html><head><meta charset="utf-8"><title>parents用法</title><script type="text/javascript" src="class library/jquery-1.10.2.min.js"></script><script>$(document).ready(function(){$('a').hover(function(){$(this).parents('p').addClass('highlight');},function(){$(this).parents('p').removeClass('highlight');});});</script><style>.highlight{ background:grey; border:3px dotted #ccc;}</style></head><body><p>去爱吧 胡歌<a href="#">词:王中言 曲:佐罗王</a></p></body></html>

0 0