有一个隐藏字段,希望在图中使用该字段的值。这是可能的吗?下面是我使用的代码示例:
<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 }]
谢谢
您可以根据您的建议有效地获取价值。
你的代码不工作,因为你只需要关闭你的函数大括号:
window.onload = function () {
var teste = document.getElementById("valor").value;
dataPoints: [
{ label: "apple", y: 10 },
{ label: "grape", y: teste }
];
} // <= here