<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title></title>
<style type="text/css"></style> <script type="text/javascript"> function P(e)
{
    alert(e.target.tagName);
}
</script>
</head>
<body><div onclick="P()" id="my1" style="width:200px;height:100px;border:1px solid red;background:#eee" >     <input type="button" value="Button" /></div>
</body>
</html>

解决方案 »

  1.   

    YuNa123,FF中要酱紫:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
        <title> </title>
    <style type="text/css"> </style>
    <script type="text/javascript">
    function P(e)
    {
        alert(e.target.tagName);
    }</script>
    </head>
    <body>
    <div onclick="P(event)" id="my1" style="width:200px;height:100px;border:1px solid red;background:#eee" >
        <input type="button" value="Button" />
    </div>
    </body>
    </html> 
      

  2.   

    ie和ff的事件源不一样!
    function P(evt)
    {
    evt = evt ? evt : (window.event ? window.event : null);
    }
      

  3.   

    好歹也在csdn几年了,发的帖子一点排版都没有。
      

  4.   

    FF中必须要传参数,不能直接获得event