最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - TypeError: $(…).autocomplete is not a function - Stack Overflow

programmeradmin1浏览0评论

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
 |  Show 4 more ments

1 Answer 1

Reset to default 7

When 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.

发布评论

评论列表(0)

  1. 暂无评论