下面是我的代码
<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>
我的 HTML 代码是
<div class="ui-widget">
<input name="searcharea" class="selectarea" id="searcharea" type="text" value="" placeholder="Area">
</div>
我的功能是
<script>
$(function(){
$( "#searcharea" ).autocomplete({
source: "suggestions.php"
});
$( "#searchcat" ).autocomplete({
source: "suggestions1.php"
});
});
</script>
我已将此页面包含在一个单独的文件中,其中包含我网站的搜索代码,并将其嵌入到各个页面上
$( "#searcharea" ).autocomplete({
我的网站链接是: http ://www.jodhpuryp.in/
这是我的自动建议框 http://api.jqueryui.com/autocomplete/的来源
谁能告诉我,为什么我在索引页面上工作时在我网站的其他页面上收到此错误。感谢任何帮助。谢谢