未捕获的TypeError:对象[object Object]的属性'$'不是函数

时间:2013-03-09 00:20:12

标签: jquery

JS初学者在这里。我一直试图在我的网站上制作slabtext,但是我得到了一个错误。不知道如何解决它。

$(window).load(function() {
Uncaught TypeError: Property '$' of object [object Object] is not a function
    slabTextHeadlines();
});


// Function to slabtext the hero panel
function slabTextHeadlines() {
    $('html:not(.ie8)').find('.slab').slabText({
        // Don't slabtext the headers if the viewport is under 380px
        "viewportBreakpoint":380
    });
};

有什么想法吗? 巴勃罗。

2 个答案:

答案 0 :(得分:0)

你是库jquery插件吗?喜欢jquery.min?

<script type="text/javascript" src="js/jquery.min" />
<script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min" />

答案 1 :(得分:0)

试试这个:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js" > </script>
$(window).load(function() {
    slabTextHeadlines();
});


// Function to slabtext the hero panel
function slabTextHeadlines() {
    $('html:not(.ie8)').find('.slab').slabText({
        // Don't slabtext the headers if the viewport is under 380px
        "viewportBreakpoint":380
    });
};