使用 Mootools 访问选择元素的特定值

发布于 11-29 23:48 字数 158 浏览 0 评论 0原文

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

我的元素将 cars_number 作为 id,为了访问此选择元素的值 1,我尝试了 cars_number[1] 但它不起作用。

I've got a select element in my HTML page and I'd like to do a specific action using Mootools when a particular value of this select is chosen but I don't know how to access the element.

My element has cars_number as id and to access value 1 of this select element I've tried cars_number[1] but it doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦在深巷2024-12-06 23:48:39

尝试使用:

$('cars_number').getSelected();

MooTools 文档

Try with:

$('cars_number').getSelected();

MooTools Documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文