文章的收藏夹按钮

发布于 2024-12-08 12:26:40 字数 1141 浏览 0 评论 0原文

我想为我的博客创建一个文章收藏夹按钮。首先我使用:

<script type="text/javascript">
  function AddPost(str,user)
  {
    if(str == "")
    {
      document.getElementById("txtHint").innerHTML = "";

      return;
    }

    if (window.XMLHttpRequest)
    { // code for IE7+, Firefox, Chrome, Opera, Safari
      xmlhttp = new XMLHttpRequest();
    }
    else
    { // code for IE6, IE5
      xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onreadystatechange = function()
    {
      if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
      {
        document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
      }
    }

    xmlhttp.open("GET", "addfav.php?p=" + str + "&u=" + user, true);
    xmlhttp.send();
  }
</script>

其中 p 是帖子 ID,u 是喜欢该文章的用户。在文章的循环中,我添加了一张图像:

onclick="AddPost(<php echo of the post id>, <php echo of the current user id>)"

这很愚蠢,因为该函数适用于所有文章,而不仅仅是一个。在 addfav.php 中,我只获取 pu 参数,然后 INSERT 到数据库中。我是 Ajax 新手,我不知道如何使其与文章不同。

I want to create for my blog an articles fav button. First I use :

<script type="text/javascript">
  function AddPost(str,user)
  {
    if(str == "")
    {
      document.getElementById("txtHint").innerHTML = "";

      return;
    }

    if (window.XMLHttpRequest)
    { // code for IE7+, Firefox, Chrome, Opera, Safari
      xmlhttp = new XMLHttpRequest();
    }
    else
    { // code for IE6, IE5
      xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onreadystatechange = function()
    {
      if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
      {
        document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
      }
    }

    xmlhttp.open("GET", "addfav.php?p=" + str + "&u=" + user, true);
    xmlhttp.send();
  }
</script>

Where p is post ID and u is the user who fav'd the article. In the loop for the articles I add an image with:

onclick="AddPost(<php echo of the post id>, <php echo of the current user id>)"

And that was stupid because the function works for all of them, not for just one. In addfav.php I just get the p and u parameters and then INSERT into the database. I'm new to Ajax and I dont know how to make it different for the articles.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2024-12-15 12:26:40

您的 PHP 代码不允许添加更多收藏夹(我无法对此进行进一步评论,因为您没有包含 PHP/SQL 代码)。另外,在您的 javascript 代码中,一旦 AJAX 返回成功,请禁用其他“收藏夹”按钮。

顺便说一句,使用像 jQuery 这样经过充分测试的库(特别是对于 AJAX)将大大加快开发速度。

Your PHP code needs to not allow any more favorites to be added (I cannot comment further on that because you did not include the PHP/SQL code). Also, in your javascript code, once AJAX has returned successful, disable the other Fav buttons.

By the way, using a well-tested library like jQuery (especially for AJAX) will greatly speed development.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文