很抱歉这个简单的问题。给出以下HTML
<div id="Jessica">
Alba.
</div>
和javascript:
window.onload= function()
{
var hot= document.getElementById("Jessica");
hot.onclick=function()
{
alert(hot);
}
}
我应该在括号之间放置什么来显示“杰西卡”?谢谢。 我把“热”但是不正确。
答案 0 :(得分:2)
使用id
属性。
window.onload= function()
{
var hot= document.getElementById("Jessica");
hot.onclick=function()
{
alert(hot.id);
}
}