我有这段代码:

<div class="services">
    <div class="grid grid-pad">

        <?php
        query_posts(array('post_type' => 'services', 'posts_per_page' => -1));

        while (have_posts()) : the_post();
            ?>

            <div class="col-1-3 tri-clear">
                <div class="single-service">
                    <i class="fa <?php echo types_render_field("icon", array("output" => "raw")); ?> service-icon"></i>
                    <?php the_title('<h3 class="service-title">', '</h3>'); ?>
                    <?php the_content('<p>', '</p>'); ?>
                </div>
            </div>

        <?php endwhile; ?>

        <!-- how to add button here? -->

    </div>
</div>


我想在此处添加<button>Contact Us</button>(我标记的地方)。由于某种原因,我无法编辑源代码,但是可以添加自定义javascript(使用jQuery)来添加按钮。如何实现呢?

感谢您的意见。

最佳答案

试试这个代码:

jQuery('.services .grid.grid-pad').append('<button>Contact us</button>');

关于php - jQuery Div内的附加按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38069414/

10-09 23:56