English 中文(简体)
Javascript: 随机“ 对象没有方法” 错误, 即使有 jquery. getScript ()
原标题:Javascript: Random "Object has no method" error even with jquery.getScript()

我一直在和 JavaScript 合作 我需要从另一个 js 文件调用一个函数 。

代码大部分时间有效, 但有时它给了我错误 : “ 目标没有方法强度计 ” 。 我甚至把代码放进一个呼叫中, 以获得Script () 在它试图调用 < code> od 计 () < / code > 函数之前确定它已装入, 但我仍然会收到随机错误 。

代码如下:

var updateDisplay = function(){
    console.log("refreshing Odometers");
    $.getScript("/odometer.js", function(){
        $.getJSON(
             /getData ,
            {
                product:   ,
                unit: unitSelection(),
                period: salesPeriod(),
                reportBegin: $("#datepickerfrom").val(),
                reportEnd: $("#datepickerto").val()
            },
            function(data){
                    $(".odometer").odometer({
                        odometerData:data
                    });
            });
    });
};

这条线有误:

$(".odometer").odometer({
    odometerData:data
});

上面写着"目标没有方法强力计"

我使用 Play 框架促进发展, 我已经在 HTML 页面中导入jQuery 和其他 JavaScript 文件 。

以下是我联署材料的进口订单:

  1. jquery
  2. odometer.js (even i use getScript, i ve put it there just to make sure)
  3. main.js (which the given code resides in..)

我做错什么了?

谢谢你的帮助...

最佳回答

似乎它是一个问题 与ajax 缓冲设置。

我找到了这个问题的答案:

< a href=" "https://stackoverflow.com/ questions/8538139/jquery-ajax-bug">jquery ajax bug

添加

$.ajaxSetup({ cache: true });

(掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声) (掌声)

问题回答

我觉得

$( 兆米). odjectr( {...})

时在兆米延伸至 jQuery 之前调用 。 流体可能像这样 。

$(".odometer").odometer({...});     // first called
$.fn.odometer = function(){...};    // later it was extended to jQuery




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签