admin管理员组文章数量:1345326
Is there any way I can do this by not using :hover and by not adding "onmouseover and onmouseout" in all elements, like an effective way in a script witch sets onmouseover and onmouseout for all input elements.
NOTE: Please try with JavaScript before trying with JQuery
<head>
<title>123</title>
<style>
.button {
color: red;
}
.button:hover {
color: blue;
}
</style>
</head>
<body>
<div>
<input class="button" type="button" value="1">
<input class="button" type="button" value="2">
<input class="button" type="button" value="3">
</div>
</body>
Is there any way I can do this by not using :hover and by not adding "onmouseover and onmouseout" in all elements, like an effective way in a script witch sets onmouseover and onmouseout for all input elements.
NOTE: Please try with JavaScript before trying with JQuery
<head>
<title>123</title>
<style>
.button {
color: red;
}
.button:hover {
color: blue;
}
</style>
</head>
<body>
<div>
<input class="button" type="button" value="1">
<input class="button" type="button" value="2">
<input class="button" type="button" value="3">
</div>
</body>
Share
Improve this question
asked Feb 9, 2013 at 10:40
user2039981user2039981
3 Answers
Reset to default 5Loop through all the elements with the input
tag
a=document.getElementsByTagName('input')
for (i in a){
a[i].onmouseover=function(){/* code goes here */}
a[i].onmouseout=function(){/* code goes here */}
}
With jQuery:
$('input').on('mouseover',function(){/* code goes here */}).on('mouseout',function(){/* code goes here */})
Not that I remend this, but you could try putting an event handler for mouseover
on the body element and then use event.target
/ event.srcElement
to determine whether you want to handle the event or not
document.body.addEventListener("mouseover",function(e) {
e = e || window.event;
var targetElem = e.target || e.srcElement;
// you can use a switch on the nodeName and handle event
switch(targetElem.nodeName) {
case 'INPUT':
// do something
break;
}
},false);
Sample JS Fiddle (with background color change) http://jsfiddle/Rcgx5/
You may try this
window.onload=function(){
document.onmouseover=function(e){
var e = e || window.event, el = e.target || el.srcElement;
if(el.type == 'button') el.style.color='red';
};
document.onmouseout=function(e){
var e = e || window.event, el = e.target || el.srcElement;
if(el.type == 'button') el.style.color='black';
};
};
DEMO.
本文标签: eventsJavaScriptSet onmouseover for multiple elements without using hoverStack Overflow
版权声明:本文标题:events - JavaScript - Set onmouseover for multiple elements without using :hover - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743777868a2537311.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论