我有一个 JQuery 脚本,当我点击一个链接时,它会给我一个引导弹出图像。弹出框有效,我得到了一个漂亮的图像,但我有很多记录,它一遍又一遍地给我同样的图片。
我究竟做错了什么?
谢谢!
HTML:
<td><a class='smoel_opvragen test' id='resources/img/smoelenboek/1.jpg' target='_blank'>Surname, Firstname</a></td>
<td><a class='smoel_opvragen test' id='resources/img/smoelenboek/3.jpg' target='_blank'>Surname, Firstname</a></td>
<td><a class='smoel_opvragen test' id='resources/img/smoelenboek/4.jpg' target='_blank'>Surname, Firstname</a></td>
<td><a class='smoel_opvragen test' id='resources/img/smoelenboek/5.jpg' target='_blank'>Surname, Firstname</a></td>
JavaScript:
$(function () {
$(".test").popover({
title: 'Profielfoto',
content: "<img src='" + $(".smoel_opvragen").attr("id") + "' width='150px'>",
html: true
})
});