如何找到弹出的元素的id

时间:2012-04-04 08:38:06

标签: javascript jquery

我需要获取弹出元素的id。我在ready函数中创建弹出窗口,以使用rel = pop(例如

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

我有很多关于rel属性pop的div,我需要找到div的id,这是popup。如何找到这个并用该id调用一些函数?我只有一个弹出窗口,但我需要div的id。

1 个答案:

答案 0 :(得分:0)

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