bklLiudl
2024-07-23 277bbae216debe7e6c04e8cc6ee6e1ba9763e14b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Custom Calendar - jQuery EasyUI Demo</title>
    <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
    <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
    <link rel="stylesheet" type="text/css" href="../demo.css">
    <script type="text/javascript" src="../../jquery.min.js"></script>
    <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
</head>
<body>
    <h2>Custom Calendar</h2>
    <p>This example shows how to custom the calendar date by using 'formatter' function.</p>
    <div style="margin:20px 0"></div>
    
    <div class="easyui-calendar" style="width:250px;height:250px;" data-options="formatter:formatDay"></div>
            
    <script>
        var d1 = Math.floor((Math.random()*30)+1);
        var d2 = Math.floor((Math.random()*30)+1);
        function formatDay(date){
            var m = date.getMonth()+1;
            var d = date.getDate();
            var opts = $(this).calendar('options');
            if (opts.month == m && d == d1){
                return '<div class="icon-ok md">' + d + '</div>';
            } else if (opts.month == m && d == d2){
                return '<div class="icon-search md">' + d + '</div>';
            }
            return d;
        }
    </script>
    <style scoped="scoped">
        .md{
            height:16px;
            line-height:16px;
            background-position:2px center;
            text-align:right;
            font-weight:bold;
            padding:0 2px;
            color:red;
        }
    </style>
</body>
</html>