JS对话框按钮改变大小,异常小

时间:2013-01-18 18:06:14

标签: javascript jquery

我正在使用Jquery 1.8.3,我注意到在我的对话框中,当用户单击选择按钮(我将按钮文本更改为应用并在对话框中显示新的div)时以及当按钮文本为Apply时,按钮尺寸变得非常小。

有什么想法吗?

ErrorCodeDialog = $("#treeview").dialog(
{ 
    closeOnEscape: true, 
    stack: false, 
    autoOpen: true, 
    modal: true, 
    resizable: false, 
    draggable: true, 
    title: 'Select and input Error details', 
    width: 480, 
    height: 500,

    buttons: 
    { 
        Select: function () 
        {
            var btnText = '';
            $('.ui-dialog-buttonpane :button').each(function () 
            {
                if ($(this).text() == 'Select') 
                {
                    btnText = 'Select';
                    $(this).text('Apply');
                    $("#errorCodes").attr("style", "display:none;");
                    $("#inputReps").attr("style", "display:inline;");
                }
                else if ($(this).text() == 'Apply') 
                {
                    btnText = 'Apply';
                    $(this).text('Select');
                    $("#errorCodes").attr("style", "display:inline;");
                    $("#inputReps").attr("style", "display:none;");
                }
            });

0 个答案:

没有答案