stophhc

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

function hui(hhc,btn)
{
var oHua = document.getElementById(btn);
var oHhc = document.getElementById(hhc);
oHua.onclick = function ()
{
var style = oHhc.style;
if(style.height=="26px"){
style.height="auto"
oHua.innerHTML="点击收回"
}else{
style.height="26px"
oHua.innerHTML="展开更多"
}
oHua.className = style.height == "26px" ? "" : "open"
}
}
hui("outer" ,"title")

posted on 2012-11-22 11:20  stophhc  阅读(156)  评论(0)    收藏  举报