我有一个使用 ui-lightness 主题的 jQuery 自动完成,但是当结果列表出现时,它比自动完成要宽得多,即使最大结果文本宽度小于自动完成的宽度。
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/ui-lightness/jquery-ui.css"/>
<script>
$(function(){
$("#search").autocomplete({source:"search.php"})
});
</script>
</head>
<body>
<table width="100%" height="100%">
<tr>
<td align="center" valign="middle">
<input id="search" style="width:50%;"/>
</td>
</tr>
</table>
</body>
</html>
顺便说一句,这是 IE8。
谢谢