Heim > Fragen und Antworten > Hauptteil
var box;
window.onload=function () {
box=document.getElementById("box");
}
function aa () {
box.style.height="400px";
}
Gibt es ein Problem, wenn der obige Code durch den folgenden Code ersetzt wird?
var box=document.getElementById("box");
function aa () {
box.style.height="400px";
}