0

我的 jQueryUI 对话框打开回调函数仅在对话框第一次打开时执行,但我希望它在每次打开对话框时都能工作。任何人都可以帮忙吗?

$('<div><b><center>'+ text +'</center></b></div>').dialog({
    title: '<b>User(s) with a similar name</b>', 
    modal: true,
    autoOpen: true,
    height: 'auto', 
    width: 400,
    resizable: false,
    open: function() { 
        $('#smartpaginate').smartpaginator({ 
            totalrecords: 3,
            recordsperpage: 2, 
            datacontainer: 'all-tabs', 
            dataelement: 'table',
            theme: 'green' 
        });
    },
    buttons: {
        "Close": function() {
            //alert($(this).attr('class'));
            $(this).dialog('close');
            return false;
        }
    }
});

回调中的代码执行分页插件Jquery smart paginator

4

1 回答 1

1

如前所述,此代码段不足以理解您的问题。在这个小提琴中看到总是调用 open 回调函数。我刚刚添加了一个 smartpaginate div 和一个按钮来控制对话框的打开:

<button id="opener">open the dialog</button>
<div id="dialog" title="Dialog Title"><div id="smartpaginate"></div></div>

并显示一条消息以显示调用已执行:

$('#opener').after('<p>dialog open function triggered</p>');

也许你应该看看你的 js 控制台,给我们更多的上下文。

于 2012-12-11T15:26:45.973 回答