在 php 中为特定的 get 请求执行 javascript


Execute javascript for a particular get request in php

>假设我的域名是 www.example.com,我有一个类别,其中包含许多项目。例如,旅行、书籍、教育。现在,如果我单击"旅行",则获取请求www.example.com/category/travel-areas。现在,我想在特别从类别中单击该 Travel 时执行一个脚本,例如当我打开<script>alert("hi")</script>时它将执行www.example.com/category/travel-areas这是我的类别.php文件 :-

<div class="content">
<?php tie_breadcrumbs() ?>
<?php
    $category_id = get_query_var('cat') ;
    $tie_cats_options = get_option( 'tie_cats_options' );
    if( !empty( $tie_cats_options[ $category_id ] ) )
        $cat_options = $tie_cats_options[ $category_id ];
?>
    <div class="page-head">
        <h1 class="page-title">
            <?php echo single_cat_title( '', false ) ?>
        </h1>
        <?php if( tie_get_option( 'category_rss' ) ): ?>
        <a class="rss-cat-icon ttip" title="<?php _eti( 'Feed Subscription' ); ?>" href="<?php echo get_category_feed_link($category_id) ?>"><i class="fa fa-rss"></i></a>
        <?php endif; ?>
        <div class="stripe-line"></div>
        <?php
        if( tie_get_option( 'category_desc' ) ):    
            $category_description = category_description();
            if ( ! empty( $category_description ) )
            echo '<div class="clear"></div><div class="archive-meta">' . $category_description . '</div>';
        endif;
        ?>
    </div>
    <?php get_template_part( 'framework/parts/slider-category' ); ?>
    <?php $loop_layout = ( !empty( $cat_options[ 'category_layout' ] ) ? $cat_options[ 'category_layout' ] :  tie_get_option( 'category_layout' ) );    ?>
    <?php get_template_part( 'loop' );  ?>
    <?php if ($wp_query->max_num_pages > 1) tie_pagenavi(); ?>
</div> <!-- .content -->

在您的代码中,没有显示链接的部分。但我可以建议你有不同区域的链接列表。例如:

<a href="#" class="travel-area" data-id="1"> Area title</a>

所以我在Jsfiddle中添加了一些例子。如您所见,JS代码的某些部分只有在传递if表达式时才会被执行。您可以更改该表达式,因此请添加一些额外的检查。