2

我想知道是否有可能让我的 bPopup 显示在触发弹出窗口的每个链接下方?

我的js:

;(function($) {
    $(function() {
        $('.notesbutton').bind('click', function(e) {
            e.preventDefault();
            $('#notesdisplay').bPopup({
            position: [1,1]
            });
        });
    });
})(jQuery);

html:

<td align=\"center\"><a href=\"#\" class=\"notesbutton\"><b>Yes</b></a></td>
<div id=\"notesdisplay\">$notes</div>
4

1 回答 1

3

如果该职位正在接受X&Y访问,那么您应该能够做到这一点。

;(function($) {
    $(function() {
        $('.notesbutton').bind('click', function(event) {
            event.preventDefault();
            $('#notesdisplay').bPopup({
               position: [event.pageX, event.pageY]
            });
        });
    });
})(jQuery);
于 2013-11-01T19:45:03.347 回答