Сообщение от Mir
|
Как сделать что-то типа этого:
if (button==mouseover){alert('mouseover');}if (button==click){alert('click');}
|
Как вариант воспользоваться этим...
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function (){
$("button").bind("mouseover click", function(e){
alert(e.type);
});
});
</script>
</head>
<body>
<button>Test</button>
</body>
</html>