本文介绍了在jQuery UI的工具提示部件AJAX内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个新的工具提示部件在jQuery UI的1.9,其暗示,AJAX的内容可以显示在它href="http://api.jqueryui.com/tool​​tip/"> API文档,但没有任何进一步的细节。我想我可以做到这样的事情,具有同步和阻塞的要求,但是这不是我想要的。

There is a new Tooltip Widget in jQuery UI 1.9, whose API docs hint that AJAX content can be displayed in it, but without any further details. I guess I can accomplish something like that with a synchronous and blocking request, but this isn't what I want.

我怎么把它显示被检索与异步AJAX请求任何内容?

How do I make it display any content that was retrieved with an asynchronous AJAX request?

推荐答案

下面是从的我的博客。希望它帮助。

Here is a ajax example of jqueryui tootip widget from my blog.hope it helps.

$(document).tooltip({
    items:'.tooltip',
    tooltipClass:'preview-tip',
    position: { my: "left+15 top", at: "right center" },
    content:function(callback) {
        $.get('preview.php', {
            id:id
        }, function(data) {
            callback(data); //**call the callback function to return the value**
        });
    },
});

这篇关于在jQuery UI的工具提示部件AJAX内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 20:56
查看更多