由於某種原因,無論何時加載頁面,它都告訴我它無法設置innerHTML的屬性。我嘗試了其他人都在說的一切,但無濟於事。我嘗試添加一個window.onload,並嘗試移動我的腳本標記以允許DOM載入時間,但它仍然無效。我該怎麼辦?無法設置內部html的屬性
<!-- The Canvas of which the buttons and labels will be placed on -->
<canvas id="myCanvasUI" width="100" height="400" style="border: 1px solid #000000;"> </canvas>
<!-- Left and Right Arrows to modify the values of the Enzymes Variable -->
<button class="buttonsEnzyme buttonsLeft" style="background: url(LeftArrow.png)" type="button" onclick="myEnzymesMinus()"></button>
<p id="myEnzymesPara"> <b> ENZYMES </b> </p>
<button class="buttonsEnzyme buttonsRight" style="background: url(RightArrow.png)" type="button" onclick="myEnzymesPlus()"></button>
<p id="myEnzymesValue"></p>
<!-- Left and Right Arrows to modify the values of the Substrates Variable -->
<button class="buttonsSubstrates buttonsLeft" style="background: url(LeftArrow.png)" type="button" onclick="mySubstratesMinus()"></button>
<p id="mySubstratesPara"> <b> SUBSTRATES </b> </p>
<button class="buttonsSubstrates buttonsRight" style="background: url(RightArrow.png)" type="button" onclick="mySubstratesPlus()"></button>
<!-- Left and Right Arrows to modify the values of the Inhibitors Variable -->
<button class="buttonsInhibitors buttonsLeft" style="background: url(LeftArrow.png)" type="button" onclick="myInhibitorsMinus()"></button>
<p id="myInhibitorsPara"> <b> INHIBITORS </b> </p>
<button class="buttonsInhibitors buttonsRight" style="background: url(RightArrow.png)" type="button" onclick="myInhibitorsPlus()"></button>
<!-- Left and Right Arrows to modify the values of the Temperature Variable -->
<button class="buttonsTemperature buttonsLeft" style="background: url(LeftArrow.png)" type="button" onclick="myTemperatureMinus()"></button>
<p id="myTemperaturePara"> <b> TEMPERATURE </b> </p>
<button class="buttonsTemperature buttonsRight" style="background: url(RightArrow.png)" type="button" onclick="myTemperaturePlus()"></button>
</div>
<!-- The Canvas of which the model will be placed on -->
<canvas id="myCanvas" width="400" height="400" style="border: 1px solid #000000;"> </canvas>
<canvas id="myModel" width="390" height="390" style="border: 1px solid #000000;"> </canvas>
<script>
var enzymes = 1;
var substrates = 20;
var inhibitors = 0;
var temperature = 25;
var container = 400;
var pH = 7;
function myEnzymesMinus() {
enzymes -= 1;
console.log(enzymes);
}
function myEnzymesPlus() {
enzymes += 1;
console.log(enzymes);
}
window.onload = function displayEnzyme() {
document.getElementById(myEnzymesValue).innerHTML = enzymes;
}
function mySubstratesMinus() {
substrates -= 1;
console.log(substrates);
}
function mySubstratesPlus() {
substrates += 1;
console.log(substrates);
}
</script>
</body>
</html>
你從來沒有'myEnzymesValue'所以你的元素將是不確定的 - 它沒有innerHTML屬性這就是爲什麼你不能對它進行設置。如果它不是一個變量,則需要引用它: 'document.getElementById('myEnzymesValue')。innerHTML = enzymes;' – Pete
您應該在mySymesMalue中使用myEnzymesValue,像這樣:'myEnzymesValue'in js –