有一个隐藏字段想要在图中使用此字段的值。 这是可能的?下面是我使用的代码示例。
<input type="hidden" name="valor" id="valor" value="20" />
window.onload = function () {
var teste = (document.getElementById("valor").value);
dataPoints: [
{ label: "apple", y: 10 },
{ label: "grape", y: teste }]
谢谢
答案 0 :(得分:0)
您可以按照建议有效获得价值。
您的代码不起作用,因为您只需要关闭功能括号:
window.onload = function () {
var teste = document.getElementById("valor").value;
dataPoints: [
{ label: "apple", y: 10 },
{ label: "grape", y: teste }
];
} // <= here