表单中按钮的鼠标悬停样式
谁能告诉我如何在表单中的按钮上添加鼠标悬停样式? 我已经给出了我的表单代码。请帮助我
<input type="button" value="Tab1" name="tab1" class="activeTab" onClick="
blur();
showIt(1);
hideIt(2);
hideIt(3);
this.className = 'activeTab';
this.form.tab2.className = 'inactiveTab';
this.form.tab3.className = 'inactiveTab'" />
(编者注:原始版本中没有换行符)
Can anyone tell me how to add mouse over style on a button in a form?
I have given my form code. Pls help me
<input type="button" value="Tab1" name="tab1" class="activeTab" onClick="
blur();
showIt(1);
hideIt(2);
hideIt(3);
this.className = 'activeTab';
this.form.tab2.className = 'inactiveTab';
this.form.tab3.className = 'inactiveTab'" />
(Editors note: no line breaks in original version)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 css
.activeTab:hover {background-color: Green;}中添加并自定义以下内容
add and customize the following in your css
.activeTab:hover {background-color: Green;}
请参阅
onmouseover
事件See
onmouseover
Event