1

这是我想在http://geheimprojekt.nomachines.org/上完成的任务

  1. 用户点击“Nochmal!” 按钮(生成新词组合)
  2. 将点击发送到我的 MySQL 数据库(无需重新加载页面),将“点击”行增加 1
  3. 更新段落中的文本“到目前为止已经生成了 n 个单词组合”。

这是我第一次尝试使用 AJAX。我有 jQuery 知识,但我无法连接看起来的点。

SQL

CREATE TABLE IF NOT EXISTS `sggcount` (
  `counter` bigint(20) NOT NULL DEFAULT '2'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci;

--
-- Dumping data for table `sggcount`
--

INSERT INTO `sggcount` (`counter`) VALUES
(2);
4

3 回答 3

2

让它工作非常简单。您需要一些 html 用于将来要放置计算的 div:

<div id="counting"></counting>

然后在 generator() 函数的末尾添加:

function generator(){
    /*your code here...*/    
    var element = document.createElement("div");
    element.setAttribute("id", "result");
    element.appendChild(document.createTextNode(name));
    document.getElementById("placeholder").appendChild(element);
    /*the ajax code here*/
    var url='urltophpfile/phpfile.php';
    $.get(url,function(data){
        $('#counting').html(data+' Word combinations have been generated so far.');
    });
 }

现在在您的 phpfile.php 文件中,您将需要代码来增加计数。如果现在我也可以提供帮助,我想您知道该怎么做。我将在此处添加一些示例代码,以便您有所了解。

<?php
  mysql_connect('localhost', 'db-sgg', 'password') or die('Cannot connect to database server');
  mysql_select_db('db1152127-sgg') or die('Cannot select database');
  $databasecall = mysql_query("SELECT counter FROM sggcount WHERE counter > 1");
  /*so here you select the already stored value and then you make an update to increment it*/
  mysql_query("UPDATE sggcount SET counter=counter+1");
  $count = mysql_fetch_assoc($databasecall);
  echo $count['counter']+1;
?>

通过执行上面的回显,您将返回增加的值,并且 ajax 将显示它。

更新 1

添加了更全面的 php 代码

注意:如果您添加 jquery 脚本,请将生成器函数更改为使用 jquery。

于 2012-04-20T12:04:57.363 回答
1

在点击使用时发送 AJAX 请求:

$('#button').click(function(){ // when user `click` element with `id="button"` (#button)
 $.ajax({ // Start AJAX call
  url: 'accept.php', // URL to send AJAX request
  success: function(data) { // Function to execute on SUCCESS reply (reply data as paramenter)
    var cc = $('#clicks_count').html(); // In your element with `id="clicks_count"` you store your click count (`<a id="clicks_count">21</a>`). Assign to `cc` javascript variable value of clicls_count
    $('#clicks_count').html(cc + 1); // Increasing clicls_count on 1 and write it to `<a id="clicks_count">22</a>`
  }
});
});

在 accept.php 使用脚本将点击计数器增加 1。

于 2012-04-20T12:00:21.060 回答
0

使用 jQuery,您可以将点击事件绑定到您的按钮并发出 ajax 请求。

在服务器端,您的 PHP 页面应该更新 SQL 数据。跟随 Javascript 演示代码

$(document).ready(function(){
    $('button-selector').click(function(){
        //use jquery ajax call to call php server page that update SQL data
        $.ajax({
              url: "updateClick.php",
             context: document.body
             }).success(function() { 
                     //success callback
             });
    });
});
于 2012-04-20T11:58:47.643 回答