从div元素获取id并将其显示为alert

时间:2011-10-13 01:22:41

标签: javascript html alert identifier

很抱歉这个简单的问题。给出以下HTML

<div id="Jessica">
  Alba.
</div>

和javascript:

window.onload= function()
{
  var hot= document.getElementById("Jessica");
  hot.onclick=function()
  {
   alert(hot);
   }
} 

我应该在括号之间放置什么来显示“杰西卡”?谢谢。 我把“热”但是不正确。

1 个答案:

答案 0 :(得分:2)

使用id属性。

window.onload= function()
{
  var hot= document.getElementById("Jessica");
  hot.onclick=function()
  {
     alert(hot.id);
  }
}