当我打开一个 jQuery UI 对话框小部件并且对话框中的内容包含一个文本框时,当我按下回车键时对话框会自动关闭。这似乎只在使用 IE9 或 IE10 时发生。当我在文本框中按 Enter 时,我不希望对话框关闭。
我有以下 HTML:
<!DOCTYPE html>
<html>
<head>
<title>Testpage</title>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#myDialog').dialog();
});
</script>
</head>
<body>
<div id="myDialog">
Some text
<input type="text"></input>
</div>
</body>
</html>
当您打开此 HTML 页面时,该对话框将在您按 Enter 键时关闭(仅在 IE9+ 中)。有什么建议么?