我有这样的php条件:
<?php
if($numResults > 0)
{ ?>
<button id="unfollow" class="button"> unfollow </button>
<?php }
else
{ ?>
<button id="follow" class="button"> follow </button>
<?php } ?>
但如果条件变为“else statement”,我想要一个 jquery 事件处理程序,以便当用户单击“follow”时,按钮淡出,“unfollow”淡入
我试过了,但它只会淡出“关注”按钮,而不会淡出“取消关注”按钮
$('#follow').click(function()
{
$("#follow").fadeOut("slow");
$("#unfollow").fadeIn("slow");
});
有什么建议么?