我在asp.net mvc上使用了醉意的工具提示。我想在鼠标悬停时从数据库中获取有关图像的详细信息,并在工具提示中以格式化的html显示结果。有人举例说明如何用ajax调用做这件事吗?
答案 0 :(得分:0)
请允许我建议另一个jquery工具提示插件 - qTip2
对于您的问题,它确实是一个非常好用且易于使用的插件。你可以这样做:
$('.selector').qtip({
content: {
text: 'Loading...', // The text to use whilst the AJAX request is loading
ajax: {
url: '/path/to/file', // URL to the local file
type: 'GET', // POST or GET
data: {} // Data to pass along with your request
}
}});
希望这有帮助:)