当前位置 : 主页 > 大数据 > 区块链 >

prototypejs – 原型选择器:简单的例子

来源:互联网 收集:自由互联 发布时间:2021-06-22
我刚刚开始制作原型,之前我正在使用 jquery. 我无法在互联网上找到关于如何: 选择页面上具有相同ID的所有元素 (我这样做但它只适用于第一个元素:$(‘mydiv’).hide()) 按ID分配另一个
我刚刚开始制作原型,之前我正在使用 jquery.

我无法在互联网上找到关于如何:

>选择页面上具有相同ID的所有元素
(我这样做但它只适用于第一个元素:$(‘mydiv’).hide())
>按ID分配另一个div中包含的div.
>隐藏所有具有myClass类的元素.

如上所述,您不应该在页面上拥有相同的ID.除了违反标准之外,它还是一个潜在问题的处方,因为你不知道你的 JavaScript会如何反应.而是使用类.

Selecting all elements having the same
id class 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();
});

$$是你的朋友.

网友评论