gpt4 book ai didi

php - Jquery 在 Div 内添加按钮

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

我有这个代码块:

<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/

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