gpt4 book ai didi

javascript - 提供 react 后如何在移动设备上隐藏 react 文本

转载 作者:行者123 更新时间:2023-11-28 12:29:40 25 4
gpt4 key购买 nike

我正在使用简单的 facebook 点赞和评论系统。你可以在这里看到它:http://creativeartbd.com/demo/facebook/

Username : shibbirbd
password : 123456

现在,在移动设备上或在移动模式下使用浏览器查看此网站。之后点击帖子或评论 react /喜欢。它将显示一个 react 列表。

现在,如果您单击任何反应,您会看到 react 文本是可见的。我需要再次单击以隐藏该 react 文本。

一旦我使用react,是否有任何解决方法可以隐藏该 react 文本?

最佳答案

send-reaction.php AJAX请求的success回调中,需要添加$("#"+x).hide() ; 在调用 $('#login-registraion-btn').modal('show'); 之前。


成功 回调的完整示例:

$.ajax({
type: "POST",
url: "send-reaction.php",
data: dataString,
cache: false,
beforeSend: function() {},
success: function(html) {
if (parseInt(html) == 1) {
$("#like" + posts_id).html(htmlData).removeClass("reaction").removeClass("tooltipstered").addClass("unLike").attr("rel", "unlike");
$("#" + x).hide();
//refresh();
} else if (html == 3) {
$(".like_result").html(html);
$("#login-registraion-btn").modal("show");

// THESE TWO NEW LINES
$("#" + x).hide();
$(".tipsy").hide();
}
}
});

关于javascript - 提供 react 后如何在移动设备上隐藏 react 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56412832/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com