如何获取光标:嵌入对象上的指针?

Rem*_*emo 7 html css c# asp.net

1)我试图在嵌入的对象上放置透明图像.我在某个地方缺少相对和绝对的职位.但是哪里?

我实际上放置透明图像因为我不能cursor:pointer用于嵌入对象.所以我的想法是放置一个透明的图像并使用cursor:pointer.

2)为什么onclickIE不起作用?它在Firefox和Chrome中运行良好.

<div id="divmarquee" runat="server" >
     <img id="imgtrans" runat="server" src= "/images/480x75-blank-transparent" title="Click Here" style="position:relative" />
           <object width="475px" height="75px" onclick="window.location='http://www.google.com'; return false;">
                 <embed src="merchant_images/The_Marquee_Dealn.swf" type="application/x-shockwave-flash" style="z-index: 0; cursor:pointer" wmode="transparent" width="475px" height="75px"> 
                 </embed>
            </object> 
  </div>
Run Code Online (Sandbox Code Playgroud)

提前致谢!

Mr *_*r A -1

cursor: pointer当您将对象包装在 html 超链接中时将起作用。