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 ValidateBox Tooltip</h2>
    <p>This sample shows how to display another tooltip message on a valid textbox.</p>
    <div style="margin:20px 0;"></div>
    <div class="easyui-panel" title="Register" style="width:400px;padding:10px 60px 20px 60px">
        <table cellpadding="5">
            <tr>
                <td>User Name:</td>
                <td><input class="easyui-validatebox textbox" data-options="prompt:'Enter User Name.',required:true,validType:'length[3,10]'"></td>
            </tr>
            <tr>
                <td>Email:</td>
                <td><input class="easyui-validatebox textbox" data-options="prompt:'Enter a valid email.',required:true,validType:'email'"></td>
            </tr>
            <tr>
                <td>Birthday:</td>
                <td><input class="easyui-datebox"></td>
            </tr>
            <tr>
                <td>URL:</td>
                <td><input class="easyui-validatebox textbox" data-options="prompt:'Enter your URL.',required:true,validType:'url'"></td>
            </tr>
            <tr>
                <td>Phone:</td>
                <td><input class="easyui-validatebox textbox" data-options="prompt:'Enter your phone number.',required:true"></td>
            </tr>
        </table>
    </div>
    <style scoped="scoped">
        .textbox {
            height: 20px;
            margin: 0;
            padding: 0 2px;
            box-sizing: content-box;
        }
    </style>
    <script>
        $(function () {
            $('input.easyui-validatebox').validatebox({
                tipOptions: {    // the options to create tooltip
                    showEvent: 'mouseenter',
                    hideEvent: 'mouseleave',
                    showDelay: 0,
                    hideDelay: 0,
                    zIndex: '',
                    onShow: function () {
                        if (!$(this).hasClass('validatebox-invalid')) {
                            if ($(this).tooltip('options').prompt) {
                                $(this).tooltip('update', $(this).tooltip('options').prompt);
                            } else {
                                $(this).tooltip('tip').hide();
                            }
                        } else {
                            $(this).tooltip('tip').css({
                                color: '#000',
                                borderColor: '#CC9933',
                                backgroundColor: '#FFFFCC'
                            });
                        }
                    },
                    onHide: function () {
                        if (!$(this).tooltip('options').prompt) {
                            $(this).tooltip('destroy');
                        }
                    }
                }
            }).tooltip({
                position: 'right',
                content: function () {
                    var opts = $(this).validatebox('options');
                    return opts.prompt;
                },
                onShow: function () {
                    $(this).tooltip('tip').css({
                        color: '#000',
                        borderColor: '#CC9933',
                        backgroundColor: '#FFFFCC'
                    });
                }
            });
        });
    </script>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/88783539