javascript 重力表中的选项组// http://blog.rutwick.com/simulate-optgroups-in-gravity-forms-select-drop-down-e

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 重力表中的选项组// http://blog.rutwick.com/simulate-optgroups-in-gravity-forms-select-drop-down-e相关的知识,希望对你有一定的参考价值。

// 1. Turn on the "Show Values" option in a Gravity Forms select field

// 2. To start an optgroup, enter the label as you would like it 
//    to appear on the site, then in the value field enter 'start'

// 3. To end the optgroup, enter 'end' in the value field

// 4. Include the jQuery script below

jQuery(document).ready(function(){
     //Use the class you used for the drop down here, I used ‘custom-opt’
     jQuery('.custom-opt select option').each(function() {
        //look for 'start', start a new optgroup with the label 
        if(jQuery(this).val()=='start') {
            var label = jQuery(this).text();
            jQuery(this).replaceWith("<optgroup label='"+label+"'>");
        }
 
        //look for 'end' end the optgroup here
        if(jQuery(this).val()=='end') {
            jQuery(this).replaceWith('</optgroup>');
        }
    });
});

以上是关于javascript 重力表中的选项组// http://blog.rutwick.com/simulate-optgroups-in-gravity-forms-select-drop-down-e的主要内容,如果未能解决你的问题,请参考以下文章

php 在字段的“外观”选项卡下显示“重力”表单,“字段标签可见性”选项。

php 在字段的“外观”选项卡下显示“重力”表单,“字段标签可见性”选项。

如何使用 Javascript 创建重力效果?

如何在 Javascript 中循环遍历 HTML 表中的复选框行

javascript 显示重力的预加载器形成ajax形式

如何使用JavaScript中的select将两个过滤器融合到一个表中?