要求背景蓝色,上下边框宽度为4,左右边框为5

解决方案 »

  1.   

    window.onload = function(){
    var div = document.createElement('div')
    with (div.style) {
    borderTopWidth = borderBottomWidth = '4px';
    borderLeftWidth = borderRightWidth = '5px';
    backgroundColor = '#0080ff';
    }
    document.body.appendChild(div);
    }
      

  2.   


    <script>
    window.onload=function(){
    var div = document.createElement("div");
    with(div.style){
        width = '100px';
        height = '100px';
        borderColor = "#000000";
        borderStyle = "solid";
        borderLeftWidth = '5px';
        borderRightWidth = '5px';
        borderTopWidth = '4px';
        borderBottomWidth = '4px';
        backgroundColor = 'blue';
    }
    document.body.appendChild(div);
    }
    </script>