想象一下,我有这个 html 代码:
<div class="all">
<div class="test">
<a class="test1" href="#">test</a>
</div>
</div>
我正在为 .js 文件中的 a.test1 编写一些代码。我在一个页面中可能有超过 6 或 7 个 div.test。我想全部选择一个并更改它们的类。让我展示我的 .js 内容:
$("document").ready(function () {
$(".test1").live("click", function () {
//Its where I want to select all div.test in the page
});
});
现在。如何做到这一点。谢谢。