// JavaScript Document
function $(id){
return typeof id==='string'?document.getElementsByTagName(id):id;
}
window.onload=function(){
//获取鼠标滑动或点击的标签和要切换的内容元素
var titles=$('tab_box_title').getElementsByTagName('li'),
contents=$('tab_box_con').getElementsByTagName('ul');
alert(titles.length);
}
tab_box_con下面没有使用div,直接用ul控制的样式。
这一段你实现得了吗?我一直实现不出来,是哪里错了吗?
求解呀。帮帮我吧,我出不来。