未捕获的类型错误:无法调用方法 'noConflict'未定义的 [英] Uncaught TypeError: Cannot call method 'noConflict' of undefined

查看:33
本文介绍了未捕获的类型错误:无法调用方法 'noConflict'未定义的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 SalesForce 中使用 javascript 和 jquery 创建一个小部件,我遇到了一个错误:未捕获的类型错误:无法调用未定义的方法 'noConflict'

I am trying to create a widget using javascript and jquery in SalesForce, I was stuck with a ERROR: Uncaught TypeError: Cannot call method 'noConflict' of undefined

下面是我正在使用的代码

Below is my code which i am using

(function() {

// Localize jQuery variable
var $j;

/******** Load jQuery if not present *********/
if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.4.2') {
    var script_tag = document.createElement('script');
    script_tag.setAttribute("type","text/javascript");
    script_tag.setAttribute("src",
        "https://ap1.salesforce.com/resource/go/jquery.min.js");
    if (script_tag.readyState) {
      script_tag.onreadystatechange = function () { // For old versions of IE
          if (this.readyState == 'complete' || this.readyState == 'loaded') {
              scriptLoadHandler();
          }
      };
    } else {
      script_tag.onload = scriptLoadHandler;
    }
    // Try to find the head, otherwise default to the documentElement
    (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
} else {
    // The jQuery version on the window is the one we want to use
    $j = window.jQuery;
    main();
}

/******** Called once jQuery has loaded ******/
function scriptLoadHandler() {
    // Restore $ and window.jQuery to their previous values and store the
    // new jQuery in our local jQuery variable
    $j = window.jQuery.noConflict(true);
    // Call our main function
    main(); 
}

/******** Our main function ********/
function main() { 
    $j(document).ready(function($) { 
        /******* Load CSS *******/
       var css_link = $("<link>", { 
            rel: "stylesheet", 
            type: "text/css", 
            href: "style.css" 
        });
        css_link.appendTo('head');          

        /******* Load HTML *******/
        var jsonp_url = "http://al.smeuh.org/cgi-bin/webwidget_tutorial.py?callback=?";
        $.getJSON(jsonp_url, function(data) {
          $('#example-widget-container').html("This data comes from another server: " + data.html);
        });

    });
}

})(); // We call our anonymous function immediately

在浏览器控制台中,ERROR 指向 scriptLoadHandler 函数的第一行.

In the browser console ERROR is pointed to the first line of the scriptLoadHandler function.

推荐答案

声明本地jquery变量如下:

Declare local jquery variable as below :

//Localize jQuery variable
var $j = jQuery.noConflict();

这篇关于未捕获的类型错误:无法调用方法 &amp;#39;noConflict&amp;#39;未定义的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆