我有一个图像 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();
}
提前致谢!