gpt4 book ai didi

ajax - 如何通过tooltip显示数据库中的数据?

转载 作者:行者123 更新时间:2023-12-03 22:34:03 26 4
gpt4 key购买 nike

我想将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>

它是在模态窗口中显示的,但我想在工具提示中打开它,我该怎么做,请帮助我。提前非常感谢,我真的被困在这里了。

最佳答案

希望这对你有帮助..

$(".ajax_links").hover(function(e) {

e.preventDefault();
var link = $(this).attr('href');

$.ajax({
type: "GET",
url: link,
success : function (data){
$('#elementId').attr('title',data);
}

});
});

关于ajax - 如何通过tooltip显示数据库中的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15293638/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com