0

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%";
        }
    }
}
4

1 回答 1

2

当之前没有为该元素初始化宽度时,可能就是这种情况。第二次应该是50%。

通过添加测试alert(fullbox.style.width);

小提琴

于 2013-02-05T09:12:04.013 回答