gpt4 book ai didi

javascript - 如何从 h :selectManyMenu 获取值

转载 作者:行者123 更新时间:2023-11-28 01:14:59 26 4
gpt4 key购买 nike

我对 JSF 中的 h:selectManyMenu 组件有疑问。我的问题是,如果用户在他的 h:selectManyMenu 项目中添加了 10 个项目,并且从可用项目列表中选择了 3 个项目,现在我想通过一些 java 脚本代码获取这 3 个选定项目的值。有什么想法吗?

<h:selectManyMenu id="goodsList" style="height:65px;width:60px;" 
value="#{itemsBean.attachedItems}" ondblclick="removeAttched(this);">
<f:selectItems value="#{itemsBean.goodsItemsList}" />
</h:selectManyMenu>&nbsp;

最佳答案

如果您想调用 JavaScript 函数:

<f:selectItems  value="#{itemsBean.goodsItemsList}" onclick="function(this)" />

该行的 onclick="function(this)" 部分会将所选对象传递给函数。

您还可以使用onblur()ondblclick()onchange(),您可以查看所有属性 here

关于javascript - 如何从 h :selectManyMenu 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23953865/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com