wp_enqueue_script 问题
我正在尝试在我的主题上使用 wp_enqueue_script ,在我的页面上插入 3 个 javascript 文件。
function mr_forms() {
wp_register_script('validate-jquery', get_bloginfo('template_url') . '/js/jquery.validate.min.js', array('jquery'),FALSE,TRUE);
wp_enqueue_script('validate-jquery');
wp_register_script('aditional-methods', get_bloginfo('template_url') . '/js/additional-methods.min.js', array('jquery','validate'),FALSE,TRUE);
wp_enqueue_script('aditional-methods');
wp_register_script('messages-ptbr', get_bloginfo('template_url') . '/js/messages_ptbr.js', array('jquery','validate'),FALSE,TRUE);
wp_enqueue_script('messages-ptbr');
wp_register_script('forms', get_bloginfo('template_url') . '/js/forms.js', array('jquery', 'maskedinput'), FALSE, TRUE);
wp_enqueue_script('forms');
}
add_action('init', 'mr_forms');
但只有最后一个javascript“forms.js”被插入到我的页面上,其他的没有,有人知道会发生什么吗?而其他的并不重要...
I'm trying to use wp_enqueue_script on my theme, to insert 3 javascript files on my page.
function mr_forms() {
wp_register_script('validate-jquery', get_bloginfo('template_url') . '/js/jquery.validate.min.js', array('jquery'),FALSE,TRUE);
wp_enqueue_script('validate-jquery');
wp_register_script('aditional-methods', get_bloginfo('template_url') . '/js/additional-methods.min.js', array('jquery','validate'),FALSE,TRUE);
wp_enqueue_script('aditional-methods');
wp_register_script('messages-ptbr', get_bloginfo('template_url') . '/js/messages_ptbr.js', array('jquery','validate'),FALSE,TRUE);
wp_enqueue_script('messages-ptbr');
wp_register_script('forms', get_bloginfo('template_url') . '/js/forms.js', array('jquery', 'maskedinput'), FALSE, TRUE);
wp_enqueue_script('forms');
}
add_action('init', 'mr_forms');
But only the last javascript, "forms.js" is being inserted on my page, the others arent, does anyone know what might be happening ? and the other doesnt matter...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在其他注册脚本中是否错误地命名了 validate?应该是 validate-jquery 而不是 validate 吗?
Have you named validate incorrectly in the other register scripts? Should be validate-jquery instead of validate?