Сообщение от maxg5
|
Но не работает.
|
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.hover_b {
background-color: #FF00FF;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
var result = $('input[type="checkbox"]');
$('input[type="submit"]').hover(function() {
if (result.prop("checked")) $(this).addClass("hover_b");
}, function() {
$(this).removeClass("hover_b");
})
});
</script>
</head>
<body>
<input type="checkbox">
<input type="submit">
</body>
</html>