我想在鼠标悬停时显示数据,但是,我不擅长 jQuery,我不知道如何在悬停时通过它获取数据。到目前为止,这是我的功能:
function test_contact_group($id){
$results = $this
->Contact
->ContactsContactGroup
->find('all', array('conditions'=> array('ContactsContactGroup.contact_id'=>$id,)));
$this->set('results',$results);
}
而我的观点是:
<div class="firsttable">
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<thead>
<tr class="heading">
<td><?php echo __l('Group Name');?></td>
</tr>
</thead>
<tbody>
<?php foreach ($results as $results){?>
<tr>
<td>
<?php echo $results['ContactGroup']['name']?>
</td>
</tr>
<?php }?>
</tbody>
</table>
</div>
并且将获取数据的链接是
<?php echo $this->Manager->link($records['ContactGroup']['name'],array('action'=> 'test_contact_group', $records['Contact']['contact_id']));?>
链接的 HTML 是
<a href="/contacts/test_contact_group/78">default</a>
我想在悬停时通过此链接显示数据,我该怎么做,请帮我这样做,任何机构都可以帮助它,在此先感谢
我在链接上传递的参数是
$records['Contact']['contact_id'])