0

我有一个透明的 iframe,它由下一个 JS 函数创建:

Frames.prototype.CreateIframe = function (frameName, frWidth, frHeight, zindex) {
    var frameObj = document.createElement('iframe');
    frameObj.width = PX(frWidth);
    frameObj.src = 'Content.htm';
    frameObj.height = PX(frHeight);
    frameObj.id = frameName;
    frameObj.name = frameName;
    frameObj.frameBorder = 0;
    frameObj.allowTransparency = 'allowtransparency';
    frameObj.style.zIndex = zindex;
    frameObj.style.position = 'absolute';
    frameObj.style.scrolling = 'no';
    frameObj.style.scroll = 'no';
    frameObj.style.overflow = 'hidden';
    frameObj.style.left = PX(0);
    frameObj.style.top = PX(0);
    GlobalClass.AppendChild(window, frameObj);
}

下面是另一个放置图像的 iframe。我为这些图像创建了事件处理程序。例如document.GetElementById("MyImage").onclick(alert("Click!"));

如果我通过 IE 运行它,一切正常。但我通过 Chrome、Firefox、Opera 运行它,但没有任何效果。我该如何纠正这个? 上部透明 iframe 具有事件处理程序,它也适用于 IE。

4

1 回答 1

0
document.GetElementById("MyImage").onclick= function(){

alert("点击!"); }

于 2013-05-06T09:14:00.920 回答