14 lines
640 B
JavaScript
14 lines
640 B
JavaScript
|
|
document.writeln("<script>");
|
||
|
|
document.writeln("<!--");
|
||
|
|
document.writeln("\/*第一种形式 第二种形式 更换显示样式*\/");
|
||
|
|
document.writeln("function setTab(name,cursel,n){");
|
||
|
|
document.writeln("for(i=1;i<=n;i++){");
|
||
|
|
document.writeln("var menu=document.getElementById(name+i);");
|
||
|
|
document.writeln("var con=document.getElementById(\"con_\"+name+\"_\"+i);");
|
||
|
|
document.writeln("if(con!=null){");
|
||
|
|
document.writeln("menu.className=i==cursel?\"hover\":\"\";");
|
||
|
|
document.writeln("con.style.display=i==cursel?\"block\":\"none\";");
|
||
|
|
document.writeln("}}");
|
||
|
|
document.writeln("}");
|
||
|
|
document.writeln("\/\/-->");
|
||
|
|
document.writeln("<\/script>")
|