php代码

时间:2015-07-25 15:46:42

标签: php jquery html ajax json

我想制作一个简单的hovercard,向我展示来自php页面的数字1 hover.php

<?php
$user='1';
echo json_encode($user);
?>

当我在hover.js中使用tooltiper函数将其他页面中的一个简单链接悬停在其中时显示给我

$(function() {
    $('.tooltip').tooltipster({
    content: 'Loading...',
    functionBefore: function(origin, continueTooltip) {

        // we'll make this function asynchronous and allow the tooltip to go ahead and show the loading notification while fetching our data
        continueTooltip();

        // next, we want to check if our data has already been cached
        if (origin.data('ajax') !== 'cached') {
            $.ajax({
                url: '../hover.php',
                success: function(data) {
                    // update our tooltip content with our returned data and cache it
                    origin.tooltipster('content', data).data('ajax', 'cached');
                }
            });
        }
    }
});

});

当我悬停链接时,它显示我只是“正在加载......” 为什么1号没出现?

0 个答案:

没有答案