我正在尝试将js文件排队到函数中。php,但它不工作。以下是我的代码
add_action(\'init\',\'shopswing\');
function shopswing(){
if(!is_admin()){
wp_register_script(\'swing\',get_stylsheet_directory_uri(). \'/js/swing.js\',array(\'jquery\'));
wp_enqueue_script(\'swing\');
}
}
不知何故,当我加入swing代码时,我的网站停止了响应。js公司
jQuery(document).ready(function() {
$("ul>li>img").mouseenter(function(){
$(this).parents("ul")
.find(".toolTip")
.animate({ \'height\':\'200px\'})
//.css({"display":"block"});
})
.mouseout(function(){
$(this).parents("ul")
.find(".toolTip")
.animate({ \'height\':\'0\'})
//.css({"display":"none"});
});
});