<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><head>
<title>无标题页</title>
</head>
<body><span onclick="alert(this.id);" style="cursor:hand; z-index:999;" id="rile">
<img id="rile1" style="z-index:1;" src="images/Head/Head13.gif"/>ssf
sadfa
sdf
as
df
as
f<br>
<span id="rile2" style="z-index:1;back-Groundcolor:red;" >sdsdf;ldsfllksdjf</span>
</span>
</body>
</html>

解决方案 »

  1.   

    需要设置个width
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
        <title>无标题页</title>
    </head>
    <body>
        <script type="text/javascript">
            function aaa()
            {
                alert(event.srcElement.id)
            }
        </script>
        <span onclick="aaa();" style="cursor:hand; z-index:999;width:600;background-color:red" id="rile">
            <img id="rile1" style="z-index:1;" src="images/Head/Head13.gif"/>
            <span id="rile2" style="z-index:1;">sdsdf;ldsfllksdjf</span>
        </span>
    </body>
    </html>