9

我有一个多页表格。

我想在此表单的最后一页上执行一些自定义 JavaScript。从理论上讲,我所要做的就是检索当前页码并编写条件。

很简单,对吧?显然不是。

我原来的解决方法是这样的:

if ($('gform_page').last().css('display') !== 'none') {
    // perform custom scripts now that the last
    // Gravity Form page is being shown
}

$('...').css('display')返回我在表单中尝试过undefined每个元素。每次用户点击“下一步”按钮时,都会触发自定义脚本。没有雪茄。

然后,在查看Gravity Forms 文档后,我发现了两个看起来很有用的事件:gform_post_rendergform_page_loaded.

但是,文档没有说明如何访问参数。

jQuery(document).bind('gform_page_loaded', function(event, form_id, current_page){
    console.log(current_page);
    // returns nothing when loaded in the footer
    // returns [Object, object] when placed in an HTML field in the form
});

除了没有正确的代码之外,我还怀疑我没有将代码放在正确的位置,因为我在 functions.php 和 header.php 中也徒劳地尝试了以下内容(如文档所示):

<?php
function enqueue_custom_script($form, $is_ajax){
    if ($is_ajax) :
        echo '<script>console.log(current_page);</script>';
    endif;
}
add_action("gform_enqueue_scripts", "enqueue_custom_script", 10, 2);
?>

问题:

我需要什么代码来检索当前页码,更重要的是,我应该在哪里放置该代码?

4

8 回答 8

8

我得到了它。

显然,该功能rgpost对于访问当前页码至关重要。经过我自己的一些混乱之后,我能够在两个functions.php中以及在header.php中的wp_head()函数之前获得以下代码。

function run_script_on_last_page($form) {
    if (!is_admin()) {
        $current_page = rgpost('gform_source_page_number_' . $form['id']) ? rgpost('gform_source_page_number_' . $form['id']) : 1;
        if ($current_page == 10) {
            wp_enqueue_script('custom_script', get_template_directory_uri() . '/js/custom_script.js', array('jquery'), null, true);
        }
    }
}
add_action('gform_enqueue_scripts_63', 'run_script_on_last_page');

如果您要复制/粘贴上面的代码,请确保:

  • 替换10为您要检查的页面
  • 确保您的参数在wp_enqueue_script
  • 替换63为您的表单 ID

我发现一些有用的资源:

于 2013-03-01T20:49:22.877 回答
8

OPs 接受的答案可能很好用,但如果您有使用 Ajax 进行分页的表单设置,它就不起作用。

在那种情况下,我只能使用 Javascript 和以下方法让它工作;

http://www.gravityhelp.com/documentation/page/Gform_post_render

jQuery(document).bind('gform_post_render', function (event, formId, current_page) {
    if (current_page == 2) {
        // do something
    }
});

您当然可以使用formId参数将其限制为特定形式

于 2014-11-04T17:18:54.073 回答
2

当前接受的答案仅在用户从未转到表单中的上一页时才有效,如果他们这样做了,那么gform_sourge_page_number总是滞后一个。我找到了一个更好的解决方案(以这个钩子为例,但你应该能够在任何传递了 $form 的钩子中使用它):

function run_script_on_last_page( $form)  {
  if ( !is_admin() ) {
    if ( \GFFormDisplay::get_current_page( $form['id'] ) == 10) {
        wp_enqueue_script( 'custom_script', get_template_directory_uri() . '/js/custom_script.js', array( 'jquery' ), null, true );
    }
  }
}

add_action( 'gform_enqueue_scripts_63', 'run_script_on_last_page' );

GFFormDisplay::get_current_page( $form_id )是许多方便的未记录功能之一。

于 2018-08-25T00:46:36.637 回答
1

我写了一个返回当前页面的小函数:

// Get Gravity Forms Current Page
// Syntax: gf_current_page()
function gf_get_current_page()
{
    return rgpost('gform_source_page_number_' . $_POST['gform_submit']) ? rgpost('gform_target_page_number_' . $_POST['gform_submit']) : 1;
}
于 2014-05-01T16:06:23.500 回答
0

除了接受的答案之外,这里是一个查找当前页面并动态查找表单中有多少页面的示例。此示例根据是否是表单的最后一页来更改按钮文本,而不是将脚本排入队列。

// Change the text of the 'Next' form button to 'Submit' when
// the current page is the final page of the form
add_filter( 'gform_next_button', 'next_to_submit', 10, 2 );
function next_to_submit( $next_button, $form ) {
    $replacement_next_button = $next_button;
    $last_page_number = 1;
    foreach ($form['fields'] as $field) {
        $is_hidden = RGFormsModel::is_field_hidden( $form, $field, array() );
        if ($field['pageNumber'] > $last_page_number && !$is_hidden) {
            $last_page_number = $field['pageNumber'];
        }
    }
    $current_page_number = rgpost('gform_source_page_number_' . $form['id']) ? rgpost('gform_source_page_number_' . $form['id']) : 1;
    if ($last_page_number === $current_page_number) {
        // If the current page is the final page
        $replacement_next_button = str_replace( 'Next', 'Submit', $next_button );
    }
    return $replacement_next_button;
}
于 2018-04-30T12:36:38.657 回答
0

以下代码在 JavaScript 中适用于我:

$('.gf_step_active .gf_step_number').html()

它将以多页的形式为您提供当前页面的页码。

于 2019-03-13T01:42:09.987 回答
0

使用 jQuery

  var current_page_ = 1+parseInt(jQuery('.gform_page:visible').index());
于 2020-12-14T07:24:13.177 回答
0

尝试使用这个:

var current_visible_page = jQuery('.gf_step_active .gf_step_number').html();
console.log(current_visible_page);

在控制台中使用上述方法来检查它是如何工作的。

于 2021-10-12T17:56:19.443 回答