赞
踩
用javascript就可以,基本代码在下面,你自己照着改吧
html
head
meta http-equiv=Content-Type content=text/html;charset = gb2312 /
/head
body
script type=text/javascript
function changeA(){
document.getElementById(menuA).style.background='#f00';
document.getElementById(menuB).style.background='#fff';
}
function changeB(){
document.getElementById(menuB).style.background='#f00';
document.getElementById(menuA).style.background='#fff';
}
/script
input type=button οnclick=changeA() value=A/
input type=button οnclick=changeB() value=B/
div id=menuA style=width:300px;height:300px;
A
/div
div id=menuB style=width:300px;height:300px;
B
/div
/body
/html
取消
评论
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。