0

リンク提供

<link rel="stylesheet" href="http://localhost/assetbox/resources/themes/Charcoal/css/jquery-ui.css" />
<script type="text/javascript" src="http://localhost/assetbox/resources/javascript/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript" src="http://localhost/assetbox/resources/javascript/jquery/jquery-ui.js"></script>

htmlタグ

<div class="box col-6 formfield">
<input type="text" maxlength="50" name="cal" value="" class="" id="datepicker" > 
        </div>

 <script type="text/javascript"> 
            {literal}

            jQuery(function($){
                $( "#datepicker" ).datepicker();

            });

            {/literal}
    </script>

ダウンロード先のリンク:http://jqueryui.com/datepicker/

注:-localhost では問題なく動作しますが、pixaria (www.pixaria.com) で smarty を使用すると動作しません。

4

1 に答える 1

1
<script type="text/javascript"> 
        {literal}

        $(function(){
            $( "#ds" ).datepicker({ dateFormat: "dd-mm-yy" });

        });

        {/literal}
    </script>

修正:

于 2012-12-31T07:35:59.610 に答える