修改: 刚刚在更多浏览器中测试过它,它也发生在Opera,IE 9和Firefox中。 它似乎在jsbin,jsfiddle等网站上运行良好......但如果您只是使用该代码创建一个HTML文件并在浏览器中运行它,则会出现问题。
基本上给出以下代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br>
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
</html>
当页面滚动到顶部时,对话框将正常工作。但是当你向下滚动页面时,当你尝试使用句柄移动对话框时,它会向下跳转页面大约相同的滚动量。
答案 0 :(得分:2)
这个bug似乎已经在jQuery ui 1.10.3中引入了。当我切换回1.10.2时,对话框正常运行。
几周前开了一张票: http://bugs.jqueryui.com/ticket/9315