jqueryweui,两个输入框解决方法


$(document).ready(function () {

});

//
function alertTwoInput(text, title, input1, input2, onCancel, onOK) {
    var config;
    if (typeof text === 'object') {
        config = text;
    } else {
        config = {
            text: text,
            title: title,
            input1: input1,
            input2: input2,
            onOK: onOK,
            onCancel: onCancel,
            empty: false  //allow empty
        };
    }
    $.modal({
        text: '

' + (config.text || '') + '

' + '',
        title: title,
        buttons: [{
            text: onCancel,
            className: "primary",
            onClick: function () {
                console.log("cancel");
                $.closeModal();
            }
        }
            , {
                text: onOK,
                className: "primary",
                onClick: function () {
                    console.log("ok");
                }
            }
        ]
    });
}

你可能感兴趣的:(微信公众号)