我正在使用Mootools 1.2.4和IE 9。 Mootools类选择器在IE 9中不起作用(以下命令)。它找不到带有class =“selector”的输入元素。
js code:
$('indvNameId').getElements('.selector');
HTML
<input type="text" class="others selector" ..../>
<input ... />
有人可以证实吗?
答案 0 :(得分:1)
不知道原因,但$$适合我。
如果我使用
,它会起作用$$('.selector')
而不是
$('indvNameId').getElements('.selector');