我正在嘗試在Google協作平臺中包含一個簡單的JavaScript,但按下按鈕時我什麼也得不到。我把代碼放在一個HTML Box中。在本地測試時,代碼完美工作。這裏是我的代碼:將javascript加入谷歌網站
<script>
function calcul(){
x = parseFloat(document.getElementById("value1").value);
y = parseFloat(document.getElementById("value2").value);
document.getElementById("answer").innerHTML=x+y;
}
</script>
<form action="" id="nothing">
<input type="text" id="value1">
<input type="text" id="value2">
<input type="button" value="Calculate" id="but" onclick="calcul()" />
<p id="answer"></p>
有沒有什麼我忘了讓它工作?
您能否給我們一個鏈接到直播現場? – 2013-02-08 20:34:00
對不起,我不能。這是一個私人網站,業主不想放棄。 – VidalDuval 2013-02-08 21:04:59