当前位置: 代码迷 >> Web前端 >> Event 对象 的使用
  详细解决方案

Event 对象 的使用

热度:275   发布时间:2012-08-31 12:55:03.0
Event 对象 的应用

<html>
<head>
<script type="text/javascript">
function whichElement(e)
{
var targ
if (!e) var e = window.event
if (e.target) targ = e.target
else if (e.srcElement) targ = e.srcElement
if (targ.nodeType == 3) // defeat Safari bug
?? targ = targ.parentNode
var tname
tname=targ.tagName
alert("You clicked on a " + tname + " element.")
}
</script>
</head>

<body onmousedown="whichElement(event)">
<p>在文档中点击某个位置。消息框会提示出您所点击的标签的名称。</p>

<h3>这是标题</h3>
<p>这是段落。</p>
<img src="../i/eg_mouse2.jpg" />
</body>

</html>

?

期待解决:
要实现的功能:鼠标放到哪个位置,哪个位置字体变红。

?

?

?

?

========================================

javabean? flag 标记法???

  相关解决方案