我遇到多个问题
jQuery(document).ready(function($)
我在这里尝试了十几个相关问题/答案,但没有运气。如果我采取以下其中一项,其他工作,反之亦然。
我无法弄清楚我的问题
代码是
/*
* Toggles search on and off
*/
jQuery(document).ready(function($){
$(".search-toggle").click(function(){
$("#search-container").slideToggle('slow', function(){
$('.search-toggle').toggleClass('active');
});
// Optional return false to avoid the page "jumping" when clicked
return false;
});
/*
* Toggles Match tab
*/
jQuery(document).ready(function($){
$(".control-all ").click(function(){
$(".match-events").slideToggle('fast', function(){
$('.control-all ').toggleClass('active');
});
// Optional return false to avoid the page "jumping" when clicked
return false;
});

任何可行的解决方案? 此致
答案 0 :(得分:0)
你没有正确关闭jQuery(document).ready(function($)
/*
* Toggles search on and off
*/
jQuery(document).ready(function($){
$(".search-toggle").click(function(){
$("#search-container").slideToggle('slow', function(){
$('.search-toggle').toggleClass('active');
});
// Optional return false to avoid the page "jumping" when clicked
return false;
});
});
/*
* Toggles Match tab
*/
jQuery(document).ready(function($){
$(".control-all ").click(function(){
$(".match-events").slideToggle('fast', function(){
$('.control-all ').toggleClass('active');
});
// Optional return false to avoid the page "jumping" when clicked
return false;
});
});