本文介绍了在jQuery UI的工具提示部件AJAX内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有一个新的工具提示部件在jQuery UI的1.9,其暗示,AJAX的内容可以显示在它href="http://api.jqueryui.com/tooltip/"> API文档,但没有任何进一步的细节。我想我可以做到这样的事情,具有同步和阻塞的要求,但是这不是我想要的。
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内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!