EasyUI-自定义日历


@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    <script src="~/Scripts/jquery-3.3.1.min.js"></script>
    <script src="~/Scripts/jquery.easyui.min.js"></script>
    <script src="~/Scripts/easyui-lang-zh_CN.js"></script>
    <link href="~/Content/EasyUI/themes/icon.css" rel="stylesheet" />
    <link href="~/Content/EasyUI/themes/default/easyui.css" rel="stylesheet" />

</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>

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/88706112
今日推荐