码迷,mamicode.com
首页 > Web开发 > 详细

jquery笔记之属性选择器 查找以某种条件开头的页面元素

时间:2016-12-29 13:35:57      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:html   anti   weight   jquery   header   orm   属性选择器   blog   style   

jquery笔记之属性选择器 查找以某种条件开头的页面元素


$("div[id]")                查找所有含有 id 属性的div元素。
$("div[id=‘ajaxa‘]")        查找 id 为 ajaxa 的 div 元素。
$("div[id!=‘ajaxa‘]")       查找 id 不为 ajaxa 的 div 元素。
$("div[id^=‘ajaxa‘]")       查找 id 以 ajaxa 开头的 div 元素。
$("div[id$=‘ajaxa‘]")       查找 id 以 ajaxa 结尾的 div 元素。
$("div[id*=‘ajaxa‘]")       查找 id 含 ajaxa 的 div 元素。
$("div[id][class=‘ajaxa‘]") 查找存在id属性并且类为ajaxa的 div 元素。

 

css中设置样式,

[class^="icon-"],
[class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}

jquery笔记之属性选择器 查找以某种条件开头的页面元素

标签:html   anti   weight   jquery   header   orm   属性选择器   blog   style   

原文地址:http://www.cnblogs.com/limeiky/p/6232219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!