我想将每组<h2>
和包装<table>
在它们自己的内部<div>
,这样我就可以使用 CSS 操作新容器。
下面是我正在使用的 HTML 的简化版本:
<div>
<h3></h3>
<h2 class="product-line-term-name">Product 1</h2>
<table class="views-view-grid"></table>
<h3></h3>
<h2 class="product-line-term-name">Product 2</h2>
<table class="views-view-grid"></table>
<h3></h3>
<h2 class="product-line-term-name">Product 3</h2>
<table class="views-view-grid"></table>
</div>
注意:我只在主题层上工作,所以 jQuery(1.3.2 版)和 CSS 是我的工具。