未捕获的TypeError:undefined不是函数$

未捕获的TypeError:undefined不是函数$

问题描述:

我正在使用asp.net网站. 我将这个脚本包含在标题中.

I'm using a asp.net site. I'm including this script in the header.

<script type="text/javascript">
        $('#settings, #agency_text').on('click', function () {
            $('#logout').fadeToggle('fast');
        });
  </script>

然后我收到此错误:

未捕获的TypeError:未定义不是函数

Uncaught TypeError: undefined is not a function

该错误表示未正确加载jQuery库. 首先,您需要加载jQuery库才能执行jQuery功能.

The error means that the jQuery library wasn't loaded (correctly). First you need to load in the jQuery library to be able to perform jQuery functions.

在html脚本上方添加此行

Add this line above your script in html

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>

有关更多信息,请在以下页面页中:

For more info check out this page here: http://www.w3schools.com/jquery/jquery_get_started.asp