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.
我有一个包含多个选项的下拉菜单。每当您选择一个选项时,页面都会重新加载该选项特定的数据。目前我正在使用
select.list(:name, strg).set(value)
它可以很好地完成该部分,但它不会使用特定数据重新加载页面。任何人都知道如何提供帮助。当我观看它时,它也没有选择该选项,但我的日志显示它确实如此。谢谢。
编辑:让它与 fire_event("onclick") 一起使用
在没有看到页面的情况下,我的猜测是您必须触发 JavaScript 事件。就像是:
select.list(:name, strg).set(value) select.list(:name, strg).fire_event "onchange"
ie.select_list(:name, strg).set
如果这不起作用,您可以发布一个html片段吗?