- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 WordPress
插件 Contact Form 7如果特定字段出现错误,我需要操作一些数据,不确定是否可以使用钩子(Hook)或任何东西来完成,因为我需要运行一些 JavaScript
代码而不是 PHP,所以我'我假设我需要在用户尝试提交表单时附加一个 onclick
事件?
如果可以用钩子(Hook)完成,我想它会用 this one 完成。 .
如果可以用钩子(Hook)来完成,最好的方法是什么?如果没有,我想将一个 onclick 事件附加到按钮就足够容易了,但我不确定如何才能让它运行,只有在出现验证错误并且之后 CF7 JS代码已经运行?
表单的 HTML:
<div role="form" class="wpcf7" id="wpcf7-f1304-p10-o1" lang="en-US" dir="ltr">
<div class="screen-reader-response"></div>
<form name="" action="/freetrademarksearch/#wpcf7-f1304-p10-o1" method="post" class="wpcf7-form" enctype="multipart/form-data" novalidate="novalidate">
<div style="display: none;">
<input type="hidden" name="_wpcf7" value="1304" />
<input type="hidden" name="_wpcf7_version" value="4.1.2" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1304-p10-o1" />
<input type="hidden" name="_wpnonce" value="a2009d4694" />
</div>
<div class="field_wrapper">
<p class="title">Trademark to be searched</p>
<div class="field">
<span class="wpcf7-form-control-wrap trademark"><input type="text" name="trademark" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required form-control" aria-required="true" aria-invalid="false" /></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">Upload Logo <span class="optional">(optional)</span></p>
<div class="field">
<div class="btn browse_btn">
<span class="wpcf7-form-control-wrap logo"><input type="file" name="logo" value="1" size="40" class="wpcf7-form-control wpcf7-file" aria-invalid="false" /></span>
</div>
<div class="wp_is_annoying">
<span id="upload_filename" class="file_chosen">No file selected</span>
</div>
</p>
</div>
</div>
<div class="field_wrapper">
<p class="title">Goods/Services the trademark is, or will be, used to identify</p>
<div class="field">
<span class="wpcf7-form-control-wrap identify"><input type="text" name="identify" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required form-control" aria-required="true" aria-invalid="false" /></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">If you already promote this in Australia, what was the first date of promotion?</p>
<div class="field">
<span class="wpcf7-form-control-wrap date-promoted"><input type="text" name="date-promoted" value="" size="40" class="wpcf7-form-control wpcf7-text form-control" aria-invalid="false" /></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">Has promotion been continuous since the above date?</p>
<div class="field radio_btns">
<div class="holder">
<span class="wpcf7-form-control-wrap continuous_promotion"><span class="wpcf7-form-control wpcf7-radio" id="yes_continuous_promotion"><span class="wpcf7-list-item first last"><label><input type="radio" name="continuous_promotion" value="Yes" /> <span class="wpcf7-list-item-label">Yes</span></label></span></span></span>
</div>
<div class="holder">
<span class="wpcf7-form-control-wrap continuous_promotion"><span class="wpcf7-form-control wpcf7-radio" id="no_continuous_promotion"><span class="wpcf7-list-item first last"><label><input type="radio" name="continuous_promotion" value="No" /> <span class="wpcf7-list-item-label">No</span></label></span></span></span>
</div>
</p>
</div>
</div>
<div class="field_wrapper">
<p class="title">Full Name</p>
<div class="field half">
<span class="wpcf7-form-control-wrap first-name"><input type="text" name="first-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required first form-control" aria-required="true" aria-invalid="false" placeholder="First Name" /></span><span class="wpcf7-form-control-wrap last-name"><input type="text" name="last-name" value="" size="40" class="wpcf7-form-control wpcf7-text form-control" aria-invalid="false" placeholder="Last Name" /></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">Email Address:</p>
<div class="field">
<span class="wpcf7-form-control-wrap email"><input type="email" name="email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email form-control" aria-required="true" aria-invalid="false" /></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">Phone Number:</p>
<div class="field">
<span class="wpcf7-form-control-wrap phone"><input type="text" name="phone" value="" size="40" class="wpcf7-form-control wpcf7-text form-control" aria-invalid="false" /></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">Comment: <span class="optional">(optional)</span></p>
<div class="field">
<span class="wpcf7-form-control-wrap comments"><textarea name="comments" cols="40" rows="10" class="wpcf7-form-control wpcf7-textarea form-control" aria-invalid="false"></textarea></span><br />
<span class="wpcf7-form-control-wrap hello-wrap" style="display:none !important;visibility:hidden !important;"><input class="wpcf7-form-control wpcf7-text" type="text" name="hello" value="" size="40" tabindex="-1" /><br><small>Please leave this field empty.</small></span>
</div>
</div>
<div class="field_wrapper">
<p class="title">How did you find us? <span class="optional">(optional)</span></p>
<div class="field">
<span class="wpcf7-form-control-wrap find-us"><input type="text" name="find-us" value="" size="40" class="wpcf7-form-control wpcf7-text form-control" aria-invalid="false" /></span>
</div>
</div>
<div class="field_wrapper subscribe">
<div class="field">
<div class="td">
<span class="wpcf7-form-control-wrap newsletter"><span class="wpcf7-form-control wpcf7-checkbox" id="newsletter"><span class="wpcf7-list-item first last"><input type="checkbox" name="newsletter[]" value="yes" /> <span class="wpcf7-list-item-label">yes</span></span></span></span>
</div>
<div class="td">
<label for="newsletter">I would like to receive newsletters from time to time.</label>
</div>
</p>
</div>
</div>
<div class="field_wrapper submit">
<div class="field">
<input type="submit" value="Send" class="wpcf7-form-control wpcf7-submit btn" />
</div>
</div>
<div class="wpcf7-response-output wpcf7-display-none"></div>
</form>
</div>
最佳答案
可能实现此目的最简单的方法是在 Contact Form 7 之后将脚本加入队列(通过 functions.php 或您的自定义插件),添加一个新函数并将其绑定(bind)到 DOMSubtreeModified
,并检查表单是否有错误。
当验证失败时,Contact Form 7 的 AJAX 函数添加一个 span
元素,其类为 wpcf7-not-valid-tip
(如 in the source 所示)。
您可以通过执行类似于以下的操作来针对您的特定领域:
示例 JS:
(function($){
$('div.wpcf7 > form').submit(function(){
// The name of a single field you're interested in targeting
var fieldName = 'some-field-name';
$(this).find('span.' + fieldName).bind('DOMSubtreeModified', function(event) {
// If an error has been appended to this input's parent span, do something
if ( $(this).children('.wpcf7-not-valid-tip').length ) {
// RUN YOUR FUNCTION HERE
// Prevent this function from running multiple times
$(this).off(event);
}
});
});
})(jQuery);
使用 wpcf7_enqueue_scripts
将您的脚本排入队列,在默认的 Contact Form 7 脚本之后将它们排入队列(您的路径可能会有所不同):
/**
* Enqueue Scripts with CF7 Dependencies
*/
function so30727367_enqueue_scripts() {
wp_enqueue_script( 'stackoverflow-scripts', plugin_dir_url(__FILE__) . 'scripts.js', array('jquery'), null, true );
}
add_action( 'wpcf7_enqueue_scripts', 'so30727367_enqueue_scripts' );
关于javascript - 如果 Contact Form 7 在 AJAX 提交上返回无效字段,则运行自定义函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30727367/
我的设置.py: LANGUAGE_CODE = 'de' TIME_ZONE = require_env("TIME_ZONE_IDENTIFIER") USE_I18N = True USE_L1
谁能给我解释一下 Django 的 forms.Form 和 forms.ModelForm 的相同点和不同点? 最佳答案 从 forms.Form 创建的表单由您手动配置。您最好将这些用于不直接与模
我在用 angularjs 构建的表单上遇到此错误。 `错误:[$compile:multidir] 多个指令 [form, form] 请求 'form' Controller :
我是 Spring 的新手,在尝试显示表单错误时遇到了一些麻烦。 我有以下表格: User Name:
我希望在提交表单时找出 spring:bind 和 form:form 标记库之间的区别。 我的 JSP 片段如下: ....
类型‘AbstractControl’上不存在属性‘Controls’。
有一个问题与此非常相似,但我想以不同的方式提出。 我是一个非常自定的人,但有时我确实喜欢走捷径。就这样吧。 我确实发现这两个类非常相似,尽管其中一个“帮助”程序员更快地编写代码或减少代码/重复代码。将
我在控制台中收到此错误。 “表单提交已取消,因为表单未连接” 自从我们将应用程序迁移到更新版本的 React 后,尝试将我的 redux-form 从 v5 迁移到 v6 之后。 我不确定这里出了什么
我想要的是一个表单,在提交时运行验证检查,并突出显示所有无效字段并添加工具提示。 我正在有效地寻找这样的东西: dojo.forEach(dijit.byId('myForm')._invalidWi
我需要设置symfony2表单元素的值。 我在 Controller 操作中使用了doctrine2实体, Symfony\Component\Form\AbstractType 和createFor
这是用于将数据提交到自定义列表的自定义 Editform.aspx。用户完成表单后,他应该能够点击按钮甚至“确定”按钮,并让 sharepoint 将表单数据提交到列表,然后重定向到项目显示表单 (d
我想知道在 spring 标签中编写所有表单是否是一种好习惯,或者我可以将 spring 表单标签与 html 表单标签混合使用吗? 最佳答案 当您需要 Spring 表单提供的功能时使用它们: 绑定
我正在构建动态表单并希望“即时”添加表单组。 这是我的代码,几乎可以工作: import {Component, OnInit} from '@angular/core'; import {FormG
表格 Form.Load 有什么区别? , Form.Shown和 Form.Activated事件?他们被解雇的顺序是什么? 最佳答案 参见 Windows Forms Events Lifecyc
我正在使用具有路线跟踪功能的 Xamarin Forms 开发一些应用程序。尽管我正在使用 AppCenter,即在 App.xaml.cs OnStart 我添加 protected asy
我正在实现一个 gameboy 模拟器,就像我之前的许多人一样。 我正在尝试实现 PPU 并为此使用代表屏幕的类。 // needed because VS can't find it as depe
我是 Orbeon Form 新手,想使用它。不过,我尝试过 Orbeon Form 网站上的 Form 示例,并用泰语输入了一些数据。是的,可以在“泰语”字段中输入数据。但是当我尝试生成“PDF”时
那么让表单一遍又一遍有效地呈现相同表单的最佳方法是什么,并根据实体的属性值有条件地禁用字段? 我有一个发票实体,需要一个用于创建发票的表单,以及在发票流程的各个阶段(生成、发送、支付等)禁用各个字段的
因此,我一直在与我的同事(开发人员和设计人员)就 Web 表单的自动填充工具进行亲切的辩论。这是一个重要的开发问题,因为它会影响表单的构建方式。 问)自动填充工具(例如 Google 工具栏或 Chr
那么让表单一遍又一遍有效地呈现相同表单的最佳方法是什么,并根据实体的属性值有条件地禁用字段? 我有一个发票实体,需要一个用于创建发票的表单,以及在发票流程的各个阶段(生成、发送、支付等)禁用各个字段的
我是一名优秀的程序员,十分优秀!