如何在WordPress中使用jQuery(...).MATERIAL_CHIP?

时间:2020-05-19 作者:jimver04

虽然我已经导入了materialize。js(v1.0.0)在WordPress中的我的插件中

$pluginpath = dirname (plugin_dir_url( __DIR__  ));
$pluginpath = str_replace(\'\\\\\',\'/\',$pluginpath);
$thepath = $pluginpath . \'/js_libs/materialize.js\';
wp_enqueue_script(\'wpunity_materialize_jslib\', $thepath);
在我的主要职能中

wp_register_script( \'wpunity_materialize_jslib\', plugin_dir_url( __FILE__ ) . \'js_libs/materialize.js\', null, null, false);
我一直在

jQuery(…)。material\\u芯片不是功能

对于此代码

<div id="textarea-collaborators" class="chips-autocomplete"></div>

                    <script>
                        jQuery( document ).ready(function() {
                            jQuery(\'.chips-autocomplete\').material_chip({
                                secondaryPlaceholder: \'Your collaborator email\',
                                placeholder: \'Your collaborator email\'
                            });
                        });
                    </script>

1 个回复
SO网友:jimver04

我找到了。

wp_enqueue_script(\'wpunity_materialize_jslib\', $thepath);
必须在调用调用jQuery的所有其他脚本排队后最后调用。

已解决

相关推荐

get value from selected input

这是我的情况,我有不同的输入,他们每个人都有<input id=\"q1a2\" type=\"radio\" name=\"q1\" value=\"1\" tabindex=\"-1\"> <input id=\"q2a1\" type=\"radio\" name=\"q2\" value=\"3\" tabindex=\"-1\"> 等这些值来自高级自定义字段,如:<?php if( have_rows(\'answer_three\') ): ?&