3

我有一个图像 javascript 按钮,它不适用于 chrome ,

你能帮我提前谢谢!

这是代码:

我只是隐藏弹出窗口:

编辑 :

关闭我正在使用这个功能只是隐藏它

function hideBulle() {
    $("bullepopup").style.display="none";
    hideoverlay();
}

这是创建一个盒子和这个按钮的代码

  function showBulle(obj) {
    showoverlay();
    coo =   $("content").getPosition();
    $("bullepopup").style.width = "555px";
    $("bullepopup").style.height = "555px";
    $("bullepopup").position({x: (coo.x+((650-555)/2)), y: (coo.y+(440-250)/2)});
    $("bullepopup").style.display="";
    $("bullepopup").set('html','');
    new Element('img',{src:'images/br588.gif',styles: {float:'right',cursor:'pointer'},
                            events: {
                                click: function(){
                                hideBulle();
                                }
                            }
                        }).inject($('bullepopup'));

    new Element('br').inject($('bullepopup'));

    new Element('div',{html:obj.get('html')}).inject($('bullepopup'));
}
function hideBulle() {
    $("bullepopup").style.display="none";
    hideoverlay();
}

提前致谢!

4

2 回答 2

6

使用 chrome 开发者工具检查你的 css,你的按钮中应该有一些框架

删除或更改它

你也可以试试这段代码

window.open('', '_self', ''); //bug fix
window.close();
于 2012-10-08T19:05:25.480 回答
1

top.window.close() 对我有用。在 IE、FF、Chrome、Safari 和 Opera 上测试。

于 2013-06-14T17:12:47.543 回答