我刚刚开始制作原型,之前我正在使用 jquery. 我无法在互联网上找到关于如何: 选择页面上具有相同ID的所有元素 (我这样做但它只适用于第一个元素:$(‘mydiv’).hide()) 按ID分配另一个
我无法在互联网上找到关于如何:
>选择页面上具有相同ID的所有元素
(我这样做但它只适用于第一个元素:$(‘mydiv’).hide())
>按ID分配另一个div中包含的div.
>隐藏所有具有myClass类的元素.
Selecting all elements having the same
idclass on a page (i’m doing this but it
only works for the first element :
$(‘mydiv’).hide() )
使用$$:
$$('.myclass')
Selecting a div that is contained in
another div by their id.
使用$$:
$$('div#outer div#inner')
hiding all elements that have myClass
class.
使用$$,each()和hide()
$$('.myClass').each(function(d) { d.hide(); });
$$
是你的朋友.