如何获得div的id

时间:2016-02-25 02:44:27

标签: javascript html

我需要按下div的id,我的代码现在看起来像这样,我怎么得到它?

window.onload = function() {
    document.getElementById("one").onclick = call;
    document.getElementById("two).onclick = call;
}

function call () {
     var id = I need the id here.....
}

1 个答案:

答案 0 :(得分:0)

call对象作为参数调用event函数。 event.target将返回发生事件的原始元素。您可以使用event.target.id获取该元素的ID。

此外,我认为您的代码不起作用,因为您的第二个document.getElementById上缺少引号。

function call(event) {
    var id = event.target.id;
}