onclick on DIV,从其他div上的数据库加载内容

时间:2012-10-27 22:30:11

标签: php ajax html5 html

我的概念是在html中的其他div上加载div的内容。简而言之,我想了解新的Facebook收件箱是如何工作的,当我们点击右边的邮件时,内容会从数据库中获取并加载到中心列中。我知道它由一些AJAX完成但可能无法弄清楚它是如何可能的。

提前致谢。

1 个答案:

答案 0 :(得分:1)

如果您使用的是jquery,则可以在div上使用onclick事件。

这是HTML / JS这样的工作。

<!doctype html>
<html>
    <head>
        <title>Document Title</title>
        <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
        <script>
            $('.clickable').on('click', function(){
                var data_id = $(this).data('id');
                $.ajax({
                    url: 'ajax.php',
                    type: 'POST',
                    data: {id: data_id},
                    dataType: 'json',
                    success: function(data){
                        $('#more-info').html(data.html);
                    },
                    error: function(jqXHR, textStatus, errorThrown){
                        $('#more-info').html('');
                        alert('Error Loading');
                    }
                });
            });

            });
        </script>
    </head>
    <body>
        <div id="item-one" class="clickable" data-id="123">Click me</div>
        <div id="item-two" class="clickable" data-id="456">Click me</div>
        <div id="more-info"></div>
    </body>
</html>

并且假设我们有一个名为 ajax.php 的PHP文件将返回一个json,就像我们之前在ajax函数 dataType:'json'中指定的那样,我们正在发送一个 ID 通过POST,所以这里有一个例子,你必须在它上面工作。

<强> ajax.php

<?php
$id = (int)$_POST['id'];
$query = "SELECT * FROM messages WHERE message_id = {$id} LIMIT 1"; //expecting one row
$result = mysql_query( $query );
$message = mysql_fetch_assoc( $result ); //expecting just on row

$json = array();
$json['html'] = '<p>' . $message . '</p>';

header('Content-Type: application/json');
echo json_encode( $json );
?>