我没有去挖掘,因为我认为 JustGage 有什么方法等并不重要,但我有这个新对象g
。
var g = new JustGage({
id: "gauge",
value: 34,
min: 0,
max: 100,
});
我的问题是如何稍后在脚本中检索 value 参数。
我以为这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,