<input type=button value="你的热键按钮" onclick="changeMsg(1)"/>
<input type=button value="你的热键按钮" onclick="changeMsg(2)"/>
<input type=button value="你的热键按钮" onclick="changeMsg(3)"/>
<script>
function changeMsg(value){ //具体参数 你按你的需求来定
var Msg=""
if(value==1){
Msg="<font color='red'>这事1的相应信息 </font>" //相应信息 可以 将你的那些 HTML 放进去
}
if(value==2){
Msg="<font color='red'>这是2的相应信息</font>"
}
if(value==3){
Msg="<font color='red'>这是3的相应信息</font>"
}
document.all.infoMsg.innerHTML=Msg //给SPAN 赋值
}
</script>