我想做朋友请求系统。当我点击"添加朋友"按钮,此按钮隐藏和发送按钮显示。
$(document).ready(function() {
$(".add-button").click(function(){
$.post("friend-list.php", function(data, status){
$(this).hide();
$(this).next().show();
});
});
});
一些截图
(这个)选择器没有任何效果。我怎么能这样做?