jQuery 包含在文件中,如下所示:
wp_enqueue_script("jquery");
我有一个看起来像这样的 jQuery 文件:
$(function() {
alert("j");
$('.event-wrapper a').click(function(){
event.preventDefault();
if($(this).next().is(':visible')) {
$(this).next().hide();
} else {
$('.event-info').hide();
$(this).next().show();
}
});
$('.event-info').click(function() {
$(this).hide();
});
});
这是行不通的。我试过只放 alert("j"); 在文件中,并且可以正常工作,因此正确包含了该文件。我怎样才能解决这个问题?