我有3X3箱,现在我有这样的箱子,即当你在一片广场上 h时,背景就变成了蓝色,然后当你把箱子 h回空。 我也这样认为,当任何箱子被点击时,就会出现一个形象。 我现在要完成的是,这样,当盒子被点击时,图像就会出现,当同一个盒子被点击时,图像就会消失,因此,将使用Jquery。
在这方面,我已经:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript">
$(function () {
$( .divs ).hover(function () {
$(this).css("background-color", "#0000EE");
console.log( hover );
}, function () {
$(this).css("background-color", "");
console.log( hoverout );
});
$( .divs ).click(function () {
$(this).prepend("<img class= divimg src=http://upload.wikimedia.org/wikipedia/commons/thumb/0/08/SMirC-cool.svg/320px-SMirC-cool.svg.png>");
console.log( divclicked );
});
});