未捕获的TypeError:$不是函数 [英] Uncaught TypeError: $ is not a function

查看:90
本文介绍了未捕获的TypeError:$不是函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法解决控制台出现此错误的问题:未捕获TypeError:$不是函数。这是它指向的代码:

I can't solve this problem where the console gives this error: Uncaught TypeError: $ is not a function. This is the code it points to:

<script type="text/javascript">
$(document).ready(function() {
    $(".linky").click(function(){
        var t = $(this); //<-ERROR POINTS HERE
        var y = $("#0"+t.attr("id")).offset().top;
        $('html,body').animate({scrollTop: y},500);
    });
});
</script>

我们非常感谢任何帮助!

Any help would be much appreciated!

推荐答案

您需要包含jquery脚本

You need to include the jquery script

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

这篇关于未捕获的TypeError:$不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆