0

JS初心者はこちら。Web サイトでスラブテキストを作成しようとしていますが、エラーが発生します。それを修正する方法がわかりません。

$(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
    });
};

何か案は?パブロ。

4

2 に答える 2

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" />
于 2013-03-09T00:25:45.867 に答える
0

Try this :

<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
    });
};
于 2013-03-09T00:35:02.737 に答える