TypeError:$(...)。layout不是函数

时间:2014-04-15 10:00:28

标签: jquery

**我添加了必要的jquery文件并在firefox浏览器中运行**

$(document).ready(function(){

    //This code is for tcgform resiz
    var myLayout; // a var is required because this page utilizes: myLayout.allowOverflow() method


        myLayout = $('body').layout({

        west__showOverflowOnHover:true});
});

2 个答案:

答案 0 :(得分:0)

$ .layout是一个jQuery插件吗?该错误意味着该函数未知,因此尚未加载源文件或您在加载插件之前调用该函数。

答案 1 :(得分:0)

您尚未包含jQuery脚本。 从这样的互联网下载并包含或包含:

<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>

(来自Is there a link to the "latest" jQuery library on Google APIs?

或者喜欢这里: http://www.w3schools.com/jquery/jquery_install.asp