Changes between Version 10 and Version 11 of jazz/08-10-18/jQuery


Ignore:
Timestamp:
Oct 19, 2008, 12:18:38 AM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/08-10-18/jQuery

    v10 v11  
    1010   * 編輯範例程式:
    1111{{{
    12 
     12<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
     13                    "http://www.w3.org/TR/html4/loose.dtd">
     14<html>
     15<head>
     16  <script src="http://code.jquery.com/jquery-latest.js"></script>
     17  <script src="http://dev.jquery.com/view/tags/ui/latest/ui/ui.datepicker.js"></script>
     18  <style type="text/css" media="screen">
     19    @import url('jquery-ui-themeroller.css');
     20    img.datepicker_trigger{ border:none; }
     21  </style>
     22  <script>
     23  $(document).ready(function(){
     24    $('#example').datepicker({dateFormat: 'yy-mm-dd'});
     25  });
     26  </script>
     27</head>
     28<body>
     29<input type="text" id="example"/>
     30</body>
     31</html>
    1332}}}
    1433