0

在我的 WordPress 管理区域中,在“Chrome Inspect Element>Console> 我得到

Uncaught TypeError: Object [object Object] has no method 'live' | 厚盒.js:23

当我单击thickbox.js:23时,这是突出显示的内容

//add thickbox to href & area elements that have a class of .thickbox
function tb_init(domChunk){
jQuery(domChunk).live('click', tb_click);

我在我的页面等上得到了同样的东西。

我已将此与我的主题相关联,我已经联系过他们,但还没有帮助。

希望有人可以帮助我弄清楚这里发生了什么。

4

1 回答 1

0

如果您使用 jQuery 9.1+ 版本,请尝试添加jQuery Migrate插件。将以下内容添加到functions.php

add_action( 'admin_enqueue_scripts', 'admin_scripts' );
function admin_scripts() {
    wp_enqueue_script('jquery-migrate','http://code.jquery.com/jquery-migrate-1.2.1.js',array('jquery'));
}
于 2013-07-19T02:27:45.863 回答