我想将 ajax 请求中的数据显示到工具提示,它现在在模式窗口中打开,但我想将它打开到工具提示中,我该怎么做,我尝试了很多但没有成功,我卡在在这里,请帮助我通过工具提示显示数据。
这是我的视图代码
echo $this->Manager->link('Groups',array('action'=> 'test_contact_group', $records['Contact']['contact_id']),array('class'=>'ajax_links'));
这个链接的 html 是
<a class="ajax_links" help="a" href="/contacts/test_contact_group/78">Groups</a>
jquery 就在那里
<script>
$(".ajax_links").hover(function(e) {
e.preventDefault();
var link = $(this).attr('href');
$.ajax({
type: "POST",
url: link,
cache: false
}).done(function( html ) {
jQuery('#myModal').modal('show');
jQuery('.modal-body').html("Groups" + html);
});
});
</script>
它是模态窗口中的显示,但我想在工具提示中打开它,我该怎么做,请帮助我。提前感谢一吨,我真的卡在这里。