这是jQueryUI对话框中的错误,还是由于某种原因而发生了?

JSFiddle

小提琴上的标题栏太大了。

请注意,如果您调整大小,它会回到正确的位置。

作为记录,html:

<div id="wrapper"><textarea></textarea></div>


CSS:

#wrapper {
    float: left;
    width: 40%;
    height: 30%;
    font-size: 15px;
}​


js:

$('<div title="the title">content</div>').dialog();​


有没有办法解决?我可以手动调用resize回调吗?

最佳答案

尝试使用最新的样式表。 jsFiddle example。您正在链接到ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css,最新链接是1.8.18(http://ajax.googleapis.com/ajax /libs/jqueryui/1.8.18/themes/base/jquery-ui.css)。

关于javascript - jQueryUI对话框错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10035058/

10-10 07:40