gpt4 book ai didi

javascript - 在链接内为 着色

转载 作者:行者123 更新时间:2023-11-28 05:47:08 25 4
gpt4 key购买 nike

我在我的 woo commerce 商店页面中创建了一个子类别排序菜单。我想将链接到我现在所在页面的链接设置为红色。我对 css 没有问题,只是用 js 脚本。我怎样才能让它突出当前?这是我创建的排序菜单: enter image description here可以说这是我正在使用的 ul:

<ul class="wooc_sclist" id="catmenu">
<li class="category " ><h2><a href="..." class="...">Bla</a></h2></li>
</ul>

这就是我创建排序菜单的方式:

function tutsplus_product_subcategories( $cat) {
$parentid = $cat->term_id;
$args = array(
'parent' => $parentid
);
$terms = get_terms( 'product_cat', $args );

if ( $terms || is_subcategory() ) {

echo '<ul class="wooc_sclist" id="catmenu">';

foreach ( $terms as $term ) {

echo '<li class="category " >';

echo '<h2>';
echo '<a href="' . esc_url( get_term_link( $term ) ) . '" class="' . $term->slug .'">';
echo $term->name;
echo '</a>';
echo '</h2>';

echo '</li>';


}

echo '</ul>';
}
}

最佳答案

你可以像 header.php 或 footer.php 文件一样使用 jquery

<script>
jQuery(document).ready(function(){
jQuery('.current_page_item').css('color','red');
});
</script>

关于javascript - 在链接内为 <a> 着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38410996/

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