我有facebook通知,比如我正在动态获取数据。当我添加锚标签时,它无法正常工作。
当我点击此heart
时,此下拉列表将打开,此处的数据是动态的。
这是 HTML 代码heart
<a href="" id="notificationLink"><i data-toggle="tooltip" data-placement="bottom" id="notificationIcon" title="Likes" class="fa fa-heart"></i></a>
这是JQuery代码,当我们点击heart
下拉列表将被打开时
$(document).ready(function() {
$('[data-toggle="tooltip"]').tooltip();
$("#notificationLink").click(function () {
$("#notificationContainer").fadeToggle(300);
$("#notification_count").fadeOut("slow");
return false;
});
这是php代码。这是在下拉内部获取数据。嵌入在无法正常工作的锚标记中。
<a href="index.php"> <div class="content"><img src="<?php echo "../shadi/images/" . $inner['user_photo1'];?>" alt="" height="45px" width="10%"><?php echo "<span class='body_text'>" . "<b>" . $inner['user_name'] . "</b>" . "</span> likes you"?>
</div></a> <!-- This anchor tag is not working--!
我想知道我的锚标签在下拉列表中不起作用。
答案 0 :(得分:0)
真的没什么可说的,因为我不知道“不工作”是什么意思,但这里的代码清理了一下。当你不需要时,你正在连接。您还在<a>
之外添加了<div>
标记,因此我进入了内部。不确定这是否是修复,但请试一试,看看是否有帮助。
<div class="content">
<a href="index.php">
<img src="../shadi/images/<?php echo $inner['user_photo1'] ?>" alt="" height="45px" width="10%">
<span class="body_text"><strong><?php echo $inner['user_name'] ?></strong></span> likes you
</a>
</div>