2

之后我想启用一个按钮,我打开了一个 jquery 对话框,其中选项模式设置为 true。按钮显然在对话框之外。我已经知道这似乎是一个奇怪的请求,但我需要这种行为,因为我在对话框中有一个表单,所以在单击按钮提交数据后,我必须在表单末尾附加对话框,然后单击 agin在现在位于对话框之外的按钮上。

先感谢您。

4

2 回答 2

2

使用打开对话框时触发的 te open 事件

$( ".selector" ).dialog({
   open: function(event, ui) { 
        $('#yourhiddenbutton').show();
    }
});

编辑 - 你可以这样做

$(function() {            
    $("#dialogRifiuto").dialog({
        width: 'auto',
        autoOpen: true,
        closeOnEscape: true,
        modal: true,
        resizable: false,
        open: function(){
            //change the z-index and position the div where you want
            $('#a').css({'z-index':  1005, 'position': 'absolute', 'top': 0 });            
        },
        close: function(){
            //go back to normal
            $('#a').css({'z-index':  1, 'position': 'static' });        
        }

    })

});
于 2012-04-16T13:24:40.433 回答
0

您可以使用 $('#myButton').removeAttr('disabled'); 启用按钮

于 2012-04-16T14:01:29.543 回答