喜歡在線程中。我想通過點擊第一個'td'來顯示第一個模式。接下來,我想通過點擊第二個'td'等來顯示第二個模態。我怎麼能做一個不在ID中的課程?這是一個例子。第一個元素點擊顯示第一個模態,第二個元素點擊顯示第二個模態
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<table>
<tr>
<td>td</td>
<td>td</td>
<td>td</td>
</tr>
<tr>
<td>td</td>
<td>td</td>
<td>td</td>
</tr>
</table>
<div class="modal">modal1</div>
<div class="modal">modal2</div>
<div class="modal">modal3</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</body>
</html>
https://jsfiddle.net/znzjeaq4/
這就是ID是製造。你爲什麼不能使用它們? –
你有沒有試過[第n個孩子選擇器](https://api.jquery.com/nth-child-selector/)? – Draco18s
@Stephen S 我知道我可以使用ID,但我不知道我將使用多少個元素,以便我需要使用類。是的,我嘗試過,同樣,很多代碼。 – Hvrxld