You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- var list = document.getElementById('itemList');
-
- var li = list.getElementsByTagName('li');
-
- li[0].className = 'active'
- document.getElementById('index_icon1').src = './static/images/index_icon7.png';
-
- function changeTab(id,that){
-
- for (var i = 0; i < li.length; i++) {
-
- li[i].className = '';
-
- if(i<3){
- document.getElementById('img'+(i+1)).style.display = 'none';
- document.getElementById('index_icon'+(i+1)).src = './static/images/index_icon'+(i+1)+'.png';
- }
-
- }
-
- that.className = 'active';
-
- document.getElementById('index_icon'+id).src = './static/images/index_icon'+(id+6)+'.png';
-
- document.getElementById('img'+id).style.display = 'table-cell';
-
- }
|