在我的WordPress管理区域中,在“Chrome Inspect Element> Console>”下,
未捕获的TypeError:对象[object Object]没有方法'live'| thickbox.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);
我的页面上也有同样的东西..
我已将此与我的主题相关联,我已与他们联系,但尚无帮助。
希望有人能帮助我弄清楚这里发生了什么。
答案 0 :(得分: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'));
}