我目前正在开发一个 WordPress 插件。我将以下内容排入队列并注册它们:
wp_register_script('woo_checkout_tooltips_jquery_js', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js');
wp_register_script('woo_bootstrap_js', 'http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js');
wp_register_style('woo_checkout_tooltips_css', plugins_url('css/bootstrap.css', __FILE__) );
wp_register_style('woo_bootstrap_css', plugins_url('css/style.css', __FILE__) );
wp_enqueue_style('woo_bootstrap_css');
wp_enqueue_style('woo_checkout_tooltips_css');
wp_enqueue_script('woo_checkout_tooltips_jquery_js');
wp_enqueue_script('woo_bootstrap_js');
wp_register_script('tooltip_options',plugins_url('js/tooltip_options.js', __FILE__),array(),NULL,true);
wp_enqueue_script('tooltip_options');
我的任何一个开发站点都可以正常工作。当我将它安装在其他人身上时,我在 firebug 的控制台中收到以下错误:
TypeError: $(...).tooltip is not a function
上面有什么不合适的地方吗?