0
有一個隱藏字段想要使用該字段在圖中的值。 有可能嗎?以下是我使用的代碼示例。傳遞變量形式javascript
<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 }]
謝謝
'teste'是一個字符串。你將不得不把它解析爲一個數字:'parseInt(teste,10)' – Andreas
你還沒有添加你的功能 – brk
,所以什麼不工作? – epascarello