0x800a138f - JavaScript运行时错误:属性的值' $'是null或undefined,不是Function对象。 Sharepoint 2010

时间:2014-09-04 07:59:13

标签: jquery sharepoint-2010

当我调试我的项目时,它会在sharepoint网站集中创建一个sharepoint应用程序,我在其中指定所需的所有字段,中间存在以下错误。

0x800a138f - JavaScript运行时错误:属性的值' $'是null或undefined,不是Function对象。

$(document).ready(function () {
    //Hide Genehmigerbox
    $("[id$='Superior_upLevelDiv']").parent().parent().parent().parent().parent().parent().parent().parent().hide();
    //Füge Genehmigerbutton hinzu
    $("#SPFieldTextSuperior").append(newTable);
    //overwrite entity function
    _spBodyOnLoadFunctionNames.push("overwriteEntityFunction");
    //add click
    $("input[name$='phoneOwner']:eq(1)").bind("click", function () {
        $("div[title='People Picker']:eq(0)").text($cUserLoginName);
        $("a[title='Check Names']:eq(0)").click();
    });

    clickToLoad();
});

我在思考,这是与JQuery相关的事情。

知道问题可能是什么?

感谢。

1 个答案:

答案 0 :(得分:0)

似乎你缺少对jquery库的引用。您可以下载并添加自己的脚本路径,也可以引用Web基本脚本源,例如

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

根据您需要的版本,您可以在此处找到更多信息: https://developers.google.com/speed/libraries/devguide?hl=de#jquery