[자 바스 크 립 트] 여러 개의 div 높이 적응 너비

1883 단어



    
    Document
    


    
, , , 。 , , 。 , 。
, , , 。 , , 。 , 。
var box = document.getElementById("box"); var boxs = document.getElementById("boxs"); var objArr = { // box : box, boxs : boxs } var example = (function(){ function autoHeight(obj){ for(x in obj){ obj[x].style.height = obj[x].offsetWidth + 'px'; } } function resize(obj){ window.onresize = function(){ autoHeight(obj); } } function autoTitle(obj){ for(x in obj){ obj[x].title = obj[x].innerText || obj[x].textConetnt; } } function adaptiveAltitude(obj){ autoTitle(obj); autoHeight(obj); resize(obj); } return { adaptiveAltitude : adaptiveAltitude } })(); example.adaptiveAltitude(objArr);

좋은 웹페이지 즐겨찾기