0

Application に datepicker を配置したい。皆さん、私を助けてくれませんか?. 私は 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

jQueryUIスクリプトを追加する必要があります。

<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 に答える