为什么我的 jQuery 切换功能不起作用?
请参阅此演示:http ://project.4greality.com/category/budget-homes
我的代码:
<script>
$(document).ready(function(){
$("a.switchThumb").toggle(function(){
$(this).addClass("swap");
$("div.containerDiv").fadeOut("fast", function() {
$("#containerDiv").fadeIn("fast").addClass("displayToggleNone");
});
},
function () {
$(this).removeClass("swap");
$("div.containerDiv2").fadeOut("fast", function() {
$("#containerDiv2").fadeIn("fast").removeClass("displayToggleNone");
});
});
});
</script>