是否可以在激活Customfield‘CheckBox’时激活Customfield‘Text Description’?

时间:2013-04-23 作者:Laurens

我试图找到一个解决方案,当选择框被选中时,如何激活WordPress页面中的另一个自定义字段。

这是只显示customfield的脚本\'checkbox\' 在wordpress页面编辑器中。

array(
    \'name\' => \'Lees meer button\',
    \'desc\' => \'Leesbutton weergeven.\',
    \'id\'   => $prefix . \'homepage_slider_leesmeer\',
    \'type\' => \'checkbox\',
),
我想要实现的是在选中selectbox时,在WordPress页面编辑器中显示另一个customfield。

如何做到这一点?

1 个回复
SO网友:Downloadtaky

一种可能的解决方案是使用jquery显示/隐藏自定义字段,如下所示:

<script>
    jQuery(document).ready(function($) {
    $(\'#yourcheckboxidentifier\').click(function() {
        $(\'#customfieldidentifier\').fadeToggle(400);
    });
    if ($(\'#yourcheckboxidentifier\').val() !== undefined) {
        $(\'#customfieldidentifier\').show();
    }
});
</script>

结束