0

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

有任何想法吗?

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;");
                }
            });
4

0 回答 0