摘要: 1 实现鼠标放上,显示导航栏,鼠标移走,隐藏导航栏 ,用div来控制script type="text/javascript" function change(el) { whichEl = document.getElementById(el) //获得指定ID值的对象 if (whichEl.style.display == 'none') { //block是默认值为显示,none为隐藏 whichEl.style.display = 'block'; } else { whichEl.style.display = 'none'; } } /scriptdiv class= 阅读全文
posted @ 2010-03-15 22:59 张倩 阅读(575) 评论(0) 推荐(0) 编辑