admin管理员组文章数量:1345090
I am getting the above error using the following code inside a ASP.NET MVC
<script type="text/javascript" >
$(document).ready(function () {
$("#Name").autoplete({
source: function (request, response) {
$.ajax({
url: "/Home/Index",
type: "POST",
dataType: "json",
data: { Prefix: request.term },
success: function (data) {
response($.map(data, function (item) {
return { label: item.Name, value: item.Name };
})
}
})
},
messages: {
noResults: "", results: ""
}
});
})
Jquery is definitely loaded, and I have tried using a different variable for $ - any ideas what else might be the problem?
I am getting the above error using the following code inside a ASP.NET MVC
<script type="text/javascript" >
$(document).ready(function () {
$("#Name").autoplete({
source: function (request, response) {
$.ajax({
url: "/Home/Index",
type: "POST",
dataType: "json",
data: { Prefix: request.term },
success: function (data) {
response($.map(data, function (item) {
return { label: item.Name, value: item.Name };
})
}
})
},
messages: {
noResults: "", results: ""
}
});
})
Jquery is definitely loaded, and I have tried using a different variable for $ - any ideas what else might be the problem?
Share Improve this question edited Jun 9, 2016 at 10:41 user3559349 asked Jun 9, 2016 at 9:51 Hassan AbbasHassan Abbas 4672 gold badges8 silver badges28 bronze badges 9- include jquery-ui also. – Kartikeya Khosla Commented Jun 9, 2016 at 9:51
- Also added in layout page <script src="//code.jquery./jquery-1.10.2.js"></script> <script src="//code.jquery./ui/1.11.4/jquery-ui.js"></script> – Hassan Abbas Commented Jun 9, 2016 at 9:52
- Download these files and reference them for local path. – Mairaj Ahmad Commented Jun 9, 2016 at 9:54
- @KartikeyaKhosla Please Send me jquery-ui cdn link – Hassan Abbas Commented Jun 9, 2016 at 9:54
- @HassanAbbas might be ordering of js, make sure to load the required libraries before your custom js. Can you show how you added the js files? – Anonymous Duck Commented Jun 9, 2016 at 9:56
1 Answer
Reset to default 7When you run the application on local and including libraries from server you need to write http://
or https://
before the link as when you upload the site on server its not necessary but its required on local
<script src="http://code.jquery./jquery-1.10.2.js"></script>
<script src="http://code.jquery./ui/1.11.4/jquery-ui.js"></script>
Or else download them or use from local path.
本文标签: javascriptTypeError (…)autocomplete is not a functionStack Overflow
版权声明:本文标题:javascript - TypeError: $(…).autocomplete is not a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743760368a2534260.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论