您好,我正在尝试使用 Jquery UI Autocomple,但遇到了一些问题。我正在使用一个由函数填充的全局数组。但是自动完成功能无法使用。这是我想如何使用这个小部件的一个小例子。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="plugins/jquery-ui-1.8.23.custom/css/ui-lightness/jquery-ui-1.8.23.custom.css"/>
<script type="text/javascript" src="plugins/jquery-ui-1.8.23.custom/js/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="plugins/jquery-ui-1.8.23.custom/js/jquery-ui-1.8.23.custom.min.js"></script>
<script type="text/javascript">
var data = [];
$(document).ready(function(){
//var data1 = ["Luis","DJ","Jon","Les","Jimmy"];
$("#autocomp").autocomplete({
source: data
});
});
function Load(){
data = ["luis","dj","jon","les","jimmy"];
}
function Alert(){
alert(data);
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body onload="Load()">
<div>
Type:<input type="text" id="autocomp"/>
<button onclick="Alert()">test</button>
</div>
</body>
</html>
感谢您的回复