Primefaces SelectOne菜单仅打开一次

Primefaces SelectOne菜单仅打开一次,primefaces,selectonemenu,Primefaces,Selectonemenu,我面临一种奇怪的行为:Primeface SelectOne菜单只打开一次。菜单第一次关闭后,我无法再次打开它。。。将中的“p”替换为“h”将显示工作正常的默认菜单 编辑: 有人知道该怎么做吗 提前感谢:) PS:我正在使用Chrome web浏览器,这与未正确添加到项目中的jQuery有关。在不查看代码的情况下,我们如何帮助您?XHTML和BackBean代码。 <?xml version="1.0"?> <f:view xmlns="http://www.w3.o

我面临一种奇怪的行为:Primeface SelectOne菜单只打开一次。菜单第一次关闭后,我无法再次打开它。。。将中的“p”替换为“h”将显示工作正常的默认菜单

编辑:


有人知道该怎么做吗

提前感谢:)


PS:我正在使用Chrome web浏览器,这与未正确添加到项目中的jQuery有关。

在不查看代码的情况下,我们如何帮助您?XHTML和BackBean代码。
 <?xml version="1.0"?>

 <f:view xmlns="http://www.w3.org/1999/xhtml"
       xmlns:c="http://java.sun.com/jsp/jstl/core"
       xmlns:f="http://java.sun.com/jsf/core"
       xmlns:h="http://java.sun.com/jsf/html"
       xmlns:ui="http://java.sun.com/jsf/facelets"
       xmlns:p="http://primefaces.org/ui">
       <h:head />
       <h:body> 
             <p:selectOneMenu value="#{...}"> 
                 <f:selectItem itemLabel="less than 98%" itemValue="less than 98%" />  
                 <f:selectItem itemLabel="98 - 99,5%" itemValue="98 - 99,5%" />  
                 <f:selectItem itemLabel=">= 99,5%" itemValue=">= 99,5%" />   
             </p:selectOneMenu> 
      </h:body>
 </f:view>