1

我有以下 JSF 页面:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:p="http://primefaces.org/ui">

<h:body>

    <h1>Example</h1>
    <h:form>
        <h:panelGrid columns="2" cellpadding="5">
            <h:outputText value="Counter: " />
            <h:outputText id="txt_count" value="#{counterBean.count}" />
        </h:panelGrid>

        <p:commandButton value="Count" actionListener="#{counterBean.increment}" update="txt_count"/>
    </h:form>

</h:body>

</html>

当它加载时,页面上不包含 jQuery(CSS 文件也是如此)。

是否有任何特殊配置可以强制 PrimeFaces 包含 jQuery 和 CSS?

4

2 回答 2

2

你忘了声明<h:head>.

<html ...>
    <h:head>
        ...
    </h:head>
    <h:body>
        ...
    </h:body>
</html>

CSS/JS 资源通过<h:head>.

于 2012-10-11T17:04:33.270 回答
0

您需要在页面顶部添加此内容。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
    <h:head>
    </h:head>
    <h:body>
    <!-- content goes here -->
    </h:body>
</html>

您需要删除此行:primefaces 已为您包含此行。

<h:outputScript library="primefaces" name="jquery/jquery.js"/>
于 2012-10-11T16:50:03.347 回答