我需要按下div的id,我的代码现在看起来像这样,我怎么得到它?
window.onload = function() {
document.getElementById("one").onclick = call;
document.getElementById("two).onclick = call;
}
function call () {
var id = I need the id here.....
}
答案 0 :(得分:0)
将call
对象作为参数调用event
函数。 event.target
将返回发生事件的原始元素。您可以使用event.target.id
获取该元素的ID。
此外,我认为您的代码不起作用,因为您的第二个document.getElementById
上缺少引号。
function call(event) {
var id = event.target.id;
}