我包装了一个类,但我只想包装第一个div.class productInfo而不是第二个怎么可能?
<script>
jQuery(document).ready(function($) {
$("div.productInfo").wrap("<div id='productDetails' />");
});
</script>
这是HTML
<div class="productInfo">the first div.
</div>
<div class="productInfo">the secondn div
</div>
答案 0 :(得分:2)
http://api.jquery.com/first-selector/或http://api.jquery.com/first/
我认为$("div.productInfo:first")
或$("div.productInfo").first()
会起作用。