如何显示数据库数据悬停动态描述显示?

时间:2014-02-05 06:36:05

标签: php jquery json yii

如何显示数据库数据悬停动态描述显示?在我的项目中使用产品在产品悬停上的产品分页我希望动态地显示一个弹出窗口在功能上使用什么,如ajax, json或其他一些基于其可能的技术?

2 个答案:

答案 0 :(得分:2)

试试这个,

演示Ajax Tooltip

我正在使用Jquery UI工具提示,它使用ajax请求在数据库的工具提示中显示您的IP地址,

$(function() {
    $( document ).tooltip({
      position: {
        my: "center bottom-20",
        at: "center top",
        using: function( position, feedback ) {

    $that = $( this )

            $.ajax({
            url: 'http://ip.jsontest.com/', 


            success: function(result){                          
                $that.text(result.ip)                    
            }           
        });
          $( this ).css( position );
          $( "<div>" )
            .addClass( "arrow" )
            .addClass( feedback.vertical )
            .addClass( feedback.horizontal )
            .appendTo( this );
        }
      }
    });
  });

答案 1 :(得分:0)

$(function() {
$( document ).tooltip({
items: "label , [title]", //as per your html
content: function() {
 $.ajax({
      type: "GET",
      url: 'Your url',
      success: function (result) {
               return result;//return result from your url should be a string
}
});
});