IE警报默认显示警告图像

时间:2012-09-03 11:03:40

标签: javascript internet-explorer user-interface

以下是IE的问题。点击网页上的按钮后,我在警告中显示成功消息。

document.alert("sucess")在所有浏览器中显示警告的简单消息,但在Internet Explorer中显示警告图像。

有没有办法隐藏那个图像..这是非常讨厌的,显示带有警告图像的成功消息..

1 个答案:

答案 0 :(得分:2)

无法更改图标或遗憾地隐藏它们。 你可以做什么创建自己的警报框;

window.alert=function( alertMessage )
{
    var alertBox = "";
            alertBox +="<div style=\"width:350px;height:70px\" class=\"alertBoxIn alertPosition\" >";
    alertBox  +="<img src=\"http://www.imsearch.info/images/info.png\" style=\"position: relative; top: 1%; left: 2%; height: '40px'\" /></td>";
                     alertBox +="<SPAN style=\"position: relative; top:-30%; left: 12%\">"+alertMessage+"</SPAN>";
                     alertBox  +="<input style=\"position: relative; top:20%; left:10%\" type=\"button\" value=\"    Ok      \" onclick=\"closeAlert();\" />";
            alertBox+="</div>";
    document.getElementById("alertPanel").innerHTML = alertBox;
    document.getElementById("alertPanel").focus();
 }

检查参考: http://blogs.msdn.com/b/phaniraj/archive/2007/03/03/cusomizing-the-alert-confirm-messages-in-ie.aspx