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>Disable Calendar Date</h2>
    <p>This example shows how to disable specified dates, only allows the user to select Mondays.</p>
    <div style="margin:20px 0"></div>

    <div class="easyui-calendar" style="width:250px;height:250px;" data-options="
            validator: function(date){
                if (date.getDay() == 1){
                    return true;
                } else {
                    return false;
                }
            }
            "></div>
</body>
</html>

猜你喜欢

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