如何访问使用JustGage创建的新对象的value参数?

时间:2013-04-05 22:30:44

标签: javascript graphael justgage

我没有去挖掘,因为我不认为JustGage有什么方法等等,但我有这个新对象g

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,

1 个答案:

答案 0 :(得分:3)

尝试g.config.value - 通过查看JustGage源代码,我认为它会在那里。