gpt4 book ai didi

使用 JSF 进行 jQuery 自动完成

转载 作者:行者123 更新时间:2023-12-01 02:46:59 25 4
gpt4 key购买 nike

我已经使用 JSF 开发了 jQuery 自动完成功能,并且工作正常,但是当我添加 h:form 时它不起作用。

这是我的代码。

<script>        
/* auto complete */
$(function() {
var availableTags = "#{instrumentBean.instrumentList}";
$("#tags").autocomplete({
source: availableTags
});
});
</script>
<div class="ui-widget">
<h:form> <!-- this form was missing -->
<label for="tags">Symbol: </label>

<h:inputText id="tags" />
<h:form id="watchListForm">
<h:commandButton action="#{watchListBean.addtowatchList}"
value="ADD TO WATCH LIST"/>
</h:form>
</div>

使用上面的代码,自动完成工作正常,但是当我输入 h:inputbox 时里面h:form它不起作用。不放入h:form我无法将其值提交给 JSF 支持 bean。请给我宝贵的想法以使其正确。

提前致谢

最佳答案

我不确定这就是原因,但我使用 JSF,通常表单内字段的 id 是由将表单 id 作为组件 id 的前缀组成的。所以你应该尝试使用(如果你的 <h:inputText><h:form> 内)

$(function() {
var availableTags = #{instrumentBean.instrumentList};
//the id of the component should be watchListForm:tags, you have to escape
//the semi-colon
$( "#watchListForm\\:tags" ).autocomplete({
source: availableTags
});
});

关于使用 JSF 进行 jQuery 自动完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9090850/

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