gpt4 book ai didi

jquery - 使用 jQuery 隐藏/显示表列

转载 作者:行者123 更新时间:2023-12-01 08:29:12 25 4
gpt4 key购买 nike

我目前正在开发一个新的 Magento 模板,但我遇到了 jQuery 的问题。

我当前的 app/design/frontend/default/blank/template/catalog/product/list.phtml 代码类似于以下内容(该页面托管在此处:http://nordschleife.metaforix.net/118/118/index.php/panasonic.html)

<table border="1">
<tr>
<th width="178">Image</th>
<th width="84">Order Code</th>
<th width="84">Description</th>
<th width="69">Cell Origin</th>
<th width="98">Capacity (mAh)</th>
<th width="110"><p>Price</p>
<p><?php echo $this->getChildHtml('currency2'); ?></p></th>
<th width="39">Buy</th>
<th width="131">Cell(s)</th>
<th width="52">Voltage</th>
<th width="49">Rating (Wh)</th>
<th width="71">Part Number</th>
<th id="chem" width="69">Chemistry</th>
<th width="82"><p>Dimensions</p>
<p>(LxWxH)</p></th>
<th width="52">Weight (g)</th>
<th width="37">Color</th>
</tr>
<?php $_iterator = 0; ?>
<ol class="products-list" id="products-list">
<?php foreach ($_productCollection as $_product): ?>
<tr>
<td>
<?php // Product Image ?>
</td>
<td>
<?php echo nl2br($_product->getSku()) ?>
</td>
<td>
<?php // Product description ?>
</td>
<td>
<?php echo $_product->getAttributeText('country') ?>
</td>
<td>
<?php echo $_product->getcapacity() ?>
</td>
<td>
<?php echo $this->getPriceHtml($_product, true) ?>
</td>
<td>
<?php //add to cart ?>
</td>
<td>
<?php echo $_product->getcells() ?>
</td>
<td>
<?php echo $_product->getvoltage() ?>
</td>
<td>
<?php echo $_product->getrating() ?>
</td>
<td>
<?php echo $_product->getmfgpartno(); ?>
</td>
<td>
<?php //chemistry ?>
</td>
<td>
<?php echo nl2br ($_product->getdimension()) ?>
</td>
<td>
<?php echo (int)$_product->getweight() ?>
</td>
<td>
<?php echo $_product->getAttributeText('color') ?>
</td>
</tr>
</div>
<?php endforeach; ?>
</table>

我想使用 jQuery 在页面上显示文本,允许用户单击并显示/隐藏表格的最后 5 列。

我已将其放入文件中(想先尝试隐藏 1 列),但显然它不起作用:

<script type="text/javascript">
function show() {
jQuery(".chem").show();
}
function hide() {
jQuery(".chem").hide();
}
</script>
<p><div>
jQuery
<span onclick="show() ">(More)</span>
<span onclick="hide() ">(Hide)</span> </div></p>

最佳答案

您可以使用 td/th 索引隐藏列:

$('#tableId td:nth-child(3), #tableId th:nth-child(3)').hide();

关于jquery - 使用 jQuery 隐藏/显示表列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/909239/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com