Jquery实战学习--内容过滤选择器

来源:互联网 发布:淘宝上传的图片不清晰 编辑:程序博客网 时间:2024/06/07 05:10
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>内容过滤选择器</title><script type="text/javascript" src="jquery-1.7.js"></script></head><body><div>haha</div><div>hehe</div><div style="width:100px"><p>enheng</p></div></body><!-- 内容过滤选择器的过滤规则主要体现在所包含的子元素或者文本内容上--><script type="text/javascript">$("div:contains('a')").css("background","red");$("div:contains('e')").css("background","green");//选取div中含有“”的div元素,改变样式</script><script type="text/javascript">$("div:has('p')").css("background","orange");</script></html>

原创粉丝点击