干得好:
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core" xmlns:p="http://primefaces.org/ui" template="/WEB-INF/templates/globalTemplate.xhtml">
<ui:define name="title">15320268</ui:define>
<ui:define name="content">
<p:growl id="growl" showDetail="true" />
<h:form>
<p:dataTable var="name" value="#{so15320268.nameList}" rowIndexVar="rowIndex" widgetVar="table">
<p:column>
<p:selectOneMenu widgetVar="menu_#{rowIndex}" onchange="select(menu_#{rowIndex});">
<f:selectItem itemLabel="Select" itemValue=""></f:selectItem>
<f:selectItem itemLabel="Month" itemValue="Month"></f:selectItem>
<f:selectItem itemLabel="Week" itemValue="Week"></f:selectItem>
</p:selectOneMenu>
</p:column>
</p:dataTable>
</h:form>
<script type="text/javascript">
function select(widgetVar){
var selectMenuDiv = widgetVar.getJQ(); // it will give you the underlying jquery object
//alert(selectMenuDiv.get(0)); // uncoment this line it will show: [object HTMLDivElement];
// so it is not select element
var selectMenu = $(selectMenuDiv).find('select');
var selectValue = $('> option:selected', selectMenu).val();
alert(selectValue);
}
</script>
</ui:define>
</ui:composition>
查看下图,这是<p:selectOneMenu/>
渲染的方式:
仔细查看突出显示的 div 的 id。它以selector_
. xhtml 是:<p:selectOneMenu id="selector_#{rowIndex}"
. 您试图用 el 和在 JSF 中创建 id,这是不允许的,这就是为什么#{rowIndex}
没有为 id 渲染的原因。文档说如果 id 确实支持 el ,则必须对其进行评估,那么java.lang.String
这将是
javax.el.ValueExpression(必须评估为 java.lang.String)
大概原因就在有的方法public void setValueExpression(String name, ValueExpression binding)
上。javax.faces.component.UIComponent
if (!(binding.isLiteralText()))
我希望它可以帮助您了解 el 不能用于 id。