gpt4 book ai didi

php - 在 Contact Form 7 生成的 html 中添加 html 元素

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

我们正在使用联系表单 7 插件,并希望在联系表单 7 生成的 html 代码中引入一个附加元素(斜体 (i))。

联系表格 7 短标签:

[checkbox* areas_checkbox id:ftype_box class:checkbox use_label_element "Option1" "Option2" "Option3"]

CF7 生成的 HTML:

<span class="wpcf7-list-item first">
<label>
<input type="checkbox" name="areas_checkbox[]" value="Xero">
<span class="wpcf7-list-item-label">Option1</span>
</label>
</span>
...

由于样式原因,为什么需要在选项之前添加元素斜体 (i) - 选项 1、选项 2 等跨度,因此它看起来像这样:

CF7 生成的 HTML:

<span class="wpcf7-list-item first">
<label><input type="checkbox" name="areas_checkbox[]" value="Xero">
<i></i>
<span class="wpcf7-list-item-label">Option1</span>
</label>
</span>
...

这可以通过 jquery 或 CF7 短代码 (php) 实现吗?

最佳答案

您可以使用before()插入<i></i>之前span .

$(document).ready(function(){
//$( "i" ).insertBefore( $( ".wpcf7-list-item-label" ) );
$('.wpcf7-list-item-label').before('<i></i>');
})
i{border:1px solid red; display:inline-block; height:10px; width:10px}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<span class="wpcf7-list-item first">
<label>
<input type="checkbox" name="areas_checkbox[]" value="Xero">
<span class="wpcf7-list-item-label">Option1</span>
</label>
</span>

关于php - 在 Contact Form 7 生成的 html 中添加 html 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42749633/

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