每当单击它时,我都会使用.click
JQuery 方法来添加.clicked
。包含一个边框和属性设置为.<td>
.clicked
box-sizing
border-box
<td>
当我水平或垂直单击两个连续的 s 时,它们的大小似乎发生了变化。为什么会这样?
这是我的代码:
<!-- page.html -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<table>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>
/* stylesheet.css */
td {
height: 100px;
width: 100px;
background-color: red;
}
.clicked {
border: 5px solid green;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
// script.js
$(document).ready(function () {
$("td").click( function() {
$(this).addClass("clicked");
});
});
帮助将不胜感激。