Sub Blue_onclick
Red.style.background="blue"
Gray.style.background="blue"
blue.style.background="blue"
document.bgColor="Blue"
msgbox "你按的是蓝色按钮",,"颜色显示"
End Sub
Sub Red_onclick
Red.style.background="red"
Gray.style.background="red"
blue.style.background="red"
document.bgColor="red"
msgbox "你按的是红色按钮",,"颜色显示"
End Sub
Sub Gray_onclick
Red.style.background="gray"
Gray.style.background="gray"
blue.style.background="gray"
document.bgColor="gray"
msgbox "你按的是灰色按钮",,"颜色显示"
End Sub
-->