代码之家  ›  专栏  ›  技术社区  ›  powtac

jquery:通过搜索style=“font-size:70%”,匹配元素?

  •  0
  • powtac  · 技术社区  · 15 年前

    如何匹配字体大小为70%的所有a-tags?

    <a href="/tag/customersproducts" style="font-size: 70%; text-decoration: none;">customersproducts</a> 
    <a href="/tag/dealers" style="font-size: 70%; text-decoration: none;">dealers</a> 
    <a href="/tag/dealershops" style="font-size: 101%; text-decoration: none;">dealershops</a> 
    <a href="/tag/dealersvendors" style="font-size: 120%; text-decoration: none;">dealersvendors</a> 
    <a href="/tag/deliverymethods" style="font-size: 70%; text-decoration: none;">deliverymethods</a> 
    <a href="/tag/departements" style="font-size: 70%; text-decoration: none;">departements</a> 
    <a href="/tag/departments" style="font-size: 104.545%; text-decoration: none;">departments</a> 
    

    这不起作用:

    $('a[style*=font-size:70%]')
    

    这是页面: http://cakeapp.com/tags/all 安装了用于测试的jquery…

    2 回复  |  直到 15 年前
        1
  •  5
  •   David Hedlund    15 年前

    你想要的是一个过滤器:

    $('a').filter(function() { return this.style.fontSize == '70%' })
    
        2
  •  1
  •   Brother Erryn    15 年前

    Style属性不是字符串,因此选择器的类型将不起作用(实际上,在chrome和firefox中的控制台在尝试这个属性时都会说“indexof不是函数”)。

    我不知道你对这个有多大的控制力,但是你考虑过把这些尺寸改成一组类吗?看起来你正在快速计算每种尺寸,所以你可能需要做一些分组/取整来完成这项工作。或者,当您创建这些内嵌样式时,您是否可以同时将类附加到70%的项上?