0

我需要获取弹出的元素的 id。我在就绪函数中创建弹出窗口,以使用 rel=pop 触发每个元素

$("[rel=pop]").popover(
{
    delay: { show: 0, hide: 200 },
    html: true,
    content:'<input id="btn" onclick=somefunction("wanted_id"); .... '
});

我有很多带有 rel 属性 pop 的 div,我需要找到弹出的 div ober 的 id。如何找到它并使用该 id 调用一些函数?我一次只有一个弹出窗口,但我需要 div 的 id。

4

1 回答 1

0
$("[rel=pop]").popover(
{
    delay: { show: 0, hide: 200 },
    html: true,
    content:'<input id="btn" onclick="somefunction("' + $(this).attr("id") + '");" .... '
});
于 2012-04-04T08:59:33.083 回答