我不断收到错误:Uncaught TypeError: Object [object Object] has no method 'autocomplete'。它工作正常,直到几天前,我似乎无法找到问题所在。似乎 jquery-ui 正在加载,所以我不明白为什么该方法不起作用。
我的代码:
<link href="css/redmond/jquery-ui-1.9.1.custom.css" rel="stylesheet">
<script src="js/jquery-1.8.2.js"></script>
<script src="js/jquery-ui-1.9.1.custom.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(function() {
$(function() {
$( "#tags" ).autocomplete({
source: "autocomplete_members.php?term="+ $("#tags").val()
}).data( "autocomplete" )._renderItem = function( ul, item ) {
var inner_html = '<a href="#" onclick="setId(\'' + item.id + '\');"><img src="' + item.img + '" width="40px" height="40px" style="vertical-align: middle;padding-bottom: 2px;padding-right: 4px;" />' + item.value + '</a>';
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append(inner_html)
.appendTo( ul );
};
});
});
function setId(val){
document.getElementById("member-id-text").value = val;
};
});
</script>
-------------------------------------------HTML-----------------------------------
<input id="tags" size="35"/>
<input type="hidden" name="member-id-text" id="member-id-text" />