在鼠标悬停时交换DIV,可以使用jQuery实现。以下是一个简单的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>交换DIV示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.box {
width: 100px;
height: 100px;
margin: 10px;
background-color: #f0f0f0;
border: 1px solid #ccc;
text-align: center;
line-height: 100px;
}
</style>
</head>
<body>
<div class="container">
<div class="box" id="box1">Box 1</div>
<div class="box" id="box2">Box 2</div>
</div>
<script>
$("#box1").hover(function() {
$("#box1").hide();
$("#box2").show();
}, function() {
$("#box1").show();
$("#box2").hide();
});
</script>
</body>
</html>
在这个示例中,我们使用了jQuery的hover()方法来监听鼠标悬停事件。当鼠标悬停在Box 1上时,Box 1会隐藏,Box 2会显示;当鼠标离开Box 1时,Box 1会重新显示,Box 2会隐藏。
需要注意的是,这个示例仅仅是一个简单的交互效果,实际应用中可能需要更复杂的交互效果和更好的用户体验。
Bootstrap的表格和Html表格大同小异,只是封装了一些css供我们使用