Javascript jQueryUI模式的关闭按钮重叠

Javascript jQueryUI模式的关闭按钮重叠,javascript,html,jquery,twitter-bootstrap,jquery-ui,Javascript,Html,Jquery,Twitter Bootstrap,Jquery Ui,我以以下方式实现了jQuery模式: $(document).ready(function () { $("#result").dialog({ autoOpen: false, title: 'My Title', width: 'auto', maxWidth: 600, height: 'auto',

我以以下方式实现了jQuery模式:

$(document).ready(function () {
    
        $("#result").dialog({
            autoOpen: false,
            title: 'My Title',
            width: 'auto',
            maxWidth: 600,
            height: 'auto',
            resizable: false,
            modal: true,
            fluid: true
        });
});

function openPopup() {
    $("#result").dialog("open");
}
“我的模态”将打开并正常工作,但“关闭”按钮如下所示:

我想知道这可能是什么原因?感谢您的帮助


PS:我做了一些研究,发现很多人都在为没有关闭按钮而挣扎。我从那里尝试了建议的解决方案,但没有解决我的问题。

请附上一个工作片段,说明您的问题。