2013-04-05 18 views
2

我沒有去挖掘,因爲我認爲它不重要JustGage有什麼方法等等,但我有這個新對象g如何訪問使用JustGage創建的新對象的value參數?

var g = new JustGage({ 
    id: "gauge", 
    value: 34, 
    min: 0, 
    max: 100, 
}); 

我的問題是如何在腳本中稍後檢索值參數。我想var value = g.value會工作,但它不會。

這裏是一個位justgage.js文件:

JustGage = function(config) { 

    if (!config.id) {alert("Missing id parameter for gauge!"); return false;} 
    if (!document.getElementById(config.id)) {alert("No element with id: \""+config.id+"\" found!"); return false;} 

    var obj = this; 

    // configurable parameters 
    obj.config = 
    { 
    // id : string 
    // this is container element id 
    id : config.id, 

    // title : string 
    // gauge title 
    title : (config.title) ? config.title : "", 

    // titleFontColor : string 
    // color of gauge title 
    titleFontColor : (config.titleFontColor) ? config.titleFontColor : "#999999", 

    // value : int 
    // value gauge is showing 
    value : (config.value) ? config.value : 0, 
+0

'JustGage'是如何定義的? – 2013-04-05 22:32:23

+0

Elementary,Sherlock!只要提供給我們什麼是'JustGage' :) – VisioN 2013-04-05 22:33:18

+0

這是一個非常大的文件,你可以看www.justgage.com,如果你喜歡。 – sherlock 2013-04-05 22:33:34

回答

3

嘗試g.config.value - 從看JustGage源代碼,我認爲它會在那裏。

+0

我認爲它也是在配置中。 – 2013-04-05 22:35:52

+0

生病!謝謝!!!一旦你看到了這個行李檔案,我想它很明顯。 – sherlock 2013-04-05 22:40:57

相關問題