jQuery选择问题

时间:2011-05-04 17:59:29

标签: jquery jquery-selectors x3d

只是想知道你是否可以提供帮助。

我有以下代码:

<transform DEF='veyron_colour_change' rotation='0.2815 -0.6785 0.6785 -3.69' scale='0.2107 0.2107 0.2107' translation='-2.291 26.33 19.26'>
  <shape>
    <appearance>
      <material ambientIntensity='1' diffuseColor='1 0.1255 0.1255' shininess='0.3825' specularColor='1.215 1.215 1.215'></material>
    </appearance>
    <indexedFaceSet creaseAngle='1' DEF='veyron_colour_change-FACES'...

我正在尝试使用jQuery选择材质元素以更改diffuseColor属性。我试图这样做的代码是:

$('[DEF="veyron_colour_change"]').next('[diffuseColor]').attr('diffuseColor', '0.2118 0.1569 0.9333');

但它不起作用。任何想法?

感谢

1 个答案:

答案 0 :(得分:1)

我认为您希望.find()不是.next()

$('[DEF="veyron_colour_change"]').find('[diffuseColor]').attr('diffuseColor', '0.2118 0.1569 0.9333');

具有该属性的元素(在本例中为<material />)是<transform />元素的后代,因此您使用.find()来定位它。 .next()表示元素之后而不是之内。