0

我想把 datepicker 放在我的 Application 上。你们能帮帮我吗?我对 JQuery 了解不多。我需要为此添加任何额外的插件还是只输入编码??这是我使用的编码。

    <html xmlns="http://www.w3.org/1999/xhtml">
    <%@include file="header.jsp"%>
    <head>
     <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>
    <script type="text/javascript">
    $('#example6').datetimepicker({
    showSecond: true,
    timeFormat: 'hh:mm:ss',
    stepHour: 2,
    stepMinute: 10,
    stepSecond: 10
});
    </script>
    </head>
    <div id="templatemo_content_right">
     <h1>Login Form</h1>
        <center>
            <form action="LoginServlet" method="POST" id="theform" name="theform">
                <table cellspacing="20" cellpading="10">
                    <tr>
                        <td>Department Id:</td>
                        <td><input type="text" name="departmentId" id="userName"/></td>
                    </tr>
                    <tr>
                        <td>Department Name:</td>
                        <td><input type="password" name="departmentName" id="password"/></td>
                    </tr>
                      <tr>
                        <td>Department Name:</td>
                        <td><input type="password" name="departmentName" id="password"/></td>
                    </tr>
                     <tr>
                        <td>Appointed Date:</td>
                        <td><input id="example6" type="text"></td>
                    </tr>
                    <tr>
                        <td><input type="submit" value="Login"/></td>
                    </tr>


                </table>



            </form>
        </center>

        <div class="cleaner_with_height">&nbsp;</div>

    </div> <!-- end of content right -->
    <%@include file="footer.jsp" %>
</html>
4

2 回答 2

0

您需要添加 jQuery UI 脚本:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"></script>

在 jQuery 脚本标签之后添加它。

于 2012-08-10T03:23:58.750 回答
0

在加载 jQuery 和您的脚本之间,您需要加载插件。或者我错过了什么。另外,为了将来参考,如果你遇到困难,请创建一个jsfiddle

于 2012-08-10T03:24:48.557 回答