我正在尝试让 jQuery UI 对话框与 WordPress 一起使用。我看到了这篇文章(在 Wordpress 中使用 jQuery UI 对话框),我尝试了解决方案,但它对我不起作用。万一这很重要,我正在使用基于 211 主题的子主题。
我把它直接放在 php 中的 wp_head() 函数前面:
function frontporch_enqueue_scripts() {
if (!is_admin() ) {
wp_enqueue_script( 'jquery' );
wp_register_script( 'google-jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js', array( 'jquery' ) );
wp_register_script( 'jquery-template', get_bloginfo('template_directory').'/js/jquery.template.js',array('jquery'),version_cache(), true);
wp_register_style( 'jquery-style', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/smoothness/jquery-ui.css', true);
wp_enqueue_style( 'jquery-style' );
wp_enqueue_script( 'google-jquery-ui' );
wp_enqueue_script( 'jquery-template' );
}
}
add_action( 'init', 'frontporch_enqueue_scripts' );
我注意到第二十一主题或子主题实际上并没有第三个脚本(template.js),但我认为这不会导致问题。
然后我在 HEAD 标签的底部添加了这个:
<script type="text/javascript">
$( "#markte_area" ).dialog({
autoOpen: false,
});
jQuery(document).ready(function($){
jQuery( "#markte_link" ).click(function() {
$( "#dialog" ).dialog( "open" );
return false;
});
}); //end document ready
</script>
加载页面时,我在错误控制台中收到以下错误:
错误:$ 不是函数
如果这将帮助您诊断问题,那么发生这种情况的页面就在这里。谢谢你的帮助!