1

问题:当我在对话框内拖动时(查看链接图像),阿富汗是我拖动到底部的国家,当拖动到此对话框的底部时,它不是自动滚动的。

我写的代码:

function popUpCountries(url, widthWin, heightWin, title) {
    $("#dialog").dialog('destroy').html('<img style="vertical-align: middle;" src="/system/ext/jquery/progbar.gif" alt="[[Please wait ...]]" />Please wait ...');
    $("#dialog").dialog({
        width: widthWin,
        height: heightWin,
        title: title,
        position : "center"
    }).dialog('open');

    $.get(url, function(data) {
        $("#dialog").html(data);
    });

图片:http : //postimg.org/image/cgcr0j32f/ 我正在使用 jqueryUI 对话框,对话框的 css 位置:绝对。谢谢你的帮助!

4

0 回答 0