我正在使用contactform7插件,当我单击“自定义”按钮时需要验证字段并提交contactform7,任何人都可以向我建议代码。
答案 0 :(得分:1)
您可以使用jquery和CSS。
首先使用以下代码从表单中隐藏提交按钮。
.wpcf7-submit{display: none;}
现在在您的自定义js文件或页脚中添加以下代码。
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#customid").click(function(){
jQuery('form.wpcf7-form').find('.wpcf7-submit').trigger( "submit" );
});
});
</script>
这将为您工作。