jquery widgets 弹框

<div id='dialog' style="display:none;">
    <div style="text-align:center;">
        <h3 style="color: red; padding: 8px; margin-top: -12px;">请确认是否重置假日信息</h3>
        <input style="margin-top:5px;80px;" id="yzm" />&nbsp;验证码:<span id="jsYzm"></span>
        <br /><br />
        <button id="btnEnter" style="cursor:pointer" class="btn btn-default">确定</button>
        <button id="btnCancel" style="cursor:pointer" class="btn btn-default">取消</button>
    </div>
</div>

js

jqxWindow("#dialog", "&nbsp;", 360, "auto");

 

function jqxWindow(selector, title, width, height, icon) {
    $(selector).show();
    $(selector).removeClass("hide");
    if ($(selector).find(".jqx-window-content").size() > 0) {
        $(selector).jqxWindow("open");
    } else {
        $(selector).jqxWindow({  width, height: height, isModal: true, modalOpacity: 0.3, resizable: false, maxWidth: 1300 });
    }
    if (icon != null) {
        title = "<i class="" + icon + "" style="color: #F2B863;font-size: 20px; margin-right: 8px; "></i>" + title;
    }
    $(selector).jqxWindow('setTitle', title);
    $(selector).on('close', function (event) {
        jqxValidateRemove();
    });
    $(selector).on('moving', function (event) {
        jqxValidateRemove();
    });

    $.position.center(selector);
}
原文地址:https://www.cnblogs.com/gaocong/p/6813935.html