我有这个代码:
var StateTextBox = document.getElementById("State");
function InitializeVP() {
StateTextBox.value = "Test"
}
它找不到 StateTextBox 作为变量...有谁知道为什么?
当我这样做时:
function InitializeVP() {
document.getElementById("State").value = "Test"
}
有用。谁能向我解释我做错了什么?