div
当 div 的大小为 50% 到 100% 时,我正在尝试调整 a的大小。但是当我尝试使用它console.log
的当前大小时,div
它只会记录空格......有什么问题?
window.onload = function() {
//declare vars
var fullbox = document.getElementById('box'),
minBut = document.getElementById('down');
minBut.onclick = function() {
if(fullbox.style.width == "50%") {
fullbox.style.width = "100%";
} else {
fullbox.style.width = "50%";
}
}
}