我試圖使用Twitter的引導酥料餅/工具提示,但我收到以下錯誤控制檯:Twitter的引導工具提示(PHP)的WordPress的
Uncaught TypeError: Object #<Object> has no method 'popover'
我已經在我的函數文件如下中包含的文件,它可以在源和直接到正確的腳本點擊後可以看到:
add_action('wp_enqueue_scripts','dcr_enqueue_scripts');
if(!function_exists('dcr_enqueue_scripts')):
function dcr_enqueue_scripts(){
wp_register_script('tooltip',get_template_directory_uri().'/js/bs-tooltip.js','jquery');
wp_register_script('popover',get_template_directory_uri().'/js/bs-popover.js',array('jquery','tooltip'),'1.0');
wp_enqueue_script('tooltip');
wp_enqueue_script('popover');
}
endif;
與下列因素期待酥料餅:
<th><span>Description:</span><img class="popoverthis" src="<?php bloginfo('template_url')?>/images/info.png" data-content="This is the content" title="Title"></th>
而且包括jQuery的頁面調用酥料餅的功能上是這樣的:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.popoverthis').popover({
placement: "bottom"
});
});
上解決此問題的任何想法,將不勝感激。
你可以發佈你的網站的演示,並指出問題的地方去看看?你的設置應該工作。你是否包含必要的工具提示CSS? –