如何在xhtml页面中包含jqplot dateAxisRenderer.min.js文件

时间:2017-04-14 12:24:47

标签: javascript xhtml jqplot

我想在你的xhtml页面中包含jqplot.dateAxisRenderer.min.js文件。 我该怎么办?

PF Version : 6.0.0

使用POM添加依赖关系:

<dependency>
    <groupId>org.wicketstuff</groupId>
    <artifactId>jqplot</artifactId>
    <version>7.6.0</version>
</dependency>

如何添加xhtml文件?

以下是我的xhtml文件代码:

<?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"
      xmlns:pe="http://primefaces.org/ui/extensions">

<ui:composition template="/pages/layout.xhtml">

    <ui:define name="pageTitle">
        <h:outputText value="Page 3" />
    </ui:define>

    <ui:define name="centerContent">        
        <div class="contentdetailheadline parbase">    
            <h1>Page 1</h1>        
        </div>    
        <div class="bodycopy parbase">    
            <div style="clear: both"></div>    
            <div class="content-body">   
                <p>
                    Welcome to My Page !!!
                </p>  
            </div>
            <div style="clear: both"></div>
        </div>    
    </ui:define>
</ui:composition>
</html>

0 个答案:

没有答案