Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的自定义 CQ5 组件有一个由 2 个下拉菜单组成的对话框。我想根据从上一个下拉菜单中选择的值自动将默认值设置为第二个菜单。
我怎样才能做到这一点?
您可以为小部件触发的不同事件注册处理程序。您可以使用“selectionchanged”事件注册一个函数,该函数将从下拉列表中读取新内容,然后使用第二个下拉列表中的 setValue() 方法将您想要的任何内容放在那里。
要从第一个下拉列表中获取第二个下拉列表,您可以使用 nextSibling() 方法。小部件文档将为您提供很多帮助。寻找“选择”