使用Mootools访问select元素的特定值

时间:2011-08-18 10:01:46

标签: html mootools

我的HTML页面中有一个select元素,当我选择此select的特定值但我不知道如何访问该元素时,我想使用Mootools执行特定操作。

我的元素将cars_number作为id并访问此select元素的值1我尝试过cars_number [1]但它不起作用。

1 个答案:

答案 0 :(得分:0)

尝试:

$('cars_number').getSelected();

MooTools Documentation