jQuery(window).load(function($)仍然给出Uncaught TypeError:$不是函数

时间:2016-02-19 19:21:47

标签: javascript jquery wordpress

我在Wordpress网站上使用jquery时遇到问题。在阅读thread之后,我认为我能够解决我的问题,但事实并非如此。

这是我尝试过的,但我仍然得到类型错误:

jQuery(window).load(function($)
{
    // auto panning
    PanPicture = function () {
        $(".wrap").show();
        $(".wrap").children("#panimg").show();
        $(".wrap").children("#panimg").animate({
            "left": "-800px"
        }, 20000);
        $(".wrap").children("#panimg").animate({
            "left": "0px"
        }, 20000);
        // refill the animation queue after animations done
        $(".wrap").children("#panimg").queue(

        function () {
            PanPicture();
            $(".wrap").children("#panimg").dequeue();
        });
    };
    //setTimeout( function() { PanPicture(); }, 1000 );
    //$(".wrap").children("#panimg").load(function() { PanPicture(); });
    PanPicture();
});

控制台给了我这个:

Uncaught TypeError: $ is not a function
PanPicture @ jd_autopan.js?ver=4.4.2:5
(anonymous function) @ jd_autopan.js?ver=4.4.2:23
m.event.dispatch @ jquery.js?ver=1.11.3:4r.handle @ jquery.js?ver=1.11.3:4

2 个答案:

答案 0 :(得分:4)

尝试此操作并确保您的脚本在 jquery之后加载(如果您使用wp_enqueue_script添加脚本,请将array('jquery')作为第3个参数传递)< / p>

jQuery(document).ready(
function ($)
{
    //blah blah
});

答案 1 :(得分:1)

jQuery(function($) {
    $(window).on("load", function() {
        console.log("Your function will triggered");
    });
});