将警告提示更改为信息图标

将警告提示更改为信息图标

本文介绍了将警告提示更改为信息图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将弹出消息中的警告图标更改为信息图标.任何人都可以帮助我
< asp:LinkBut​​ton ID ="lnkForgtnPwd" runat =服务器" CssClass ="messageLogIn" OnClick ="lnk_click" OnClientClick ="ShowMessage()">忘记了您的ID?

我创建了链接忘记了您的ID?".单击此链接后,它将调用函数ShowMessage()

Hi,i wanted to change the warning icon in my pop up message to an information icon..Can anyone please help me
<asp:LinkButton ID="lnkForgtnPwd" runat="server" CssClass="messageLogIn" OnClick="lnk_click" OnClientClick=" ShowMessage()">Forgotten your id?

I have created the link "Forgotten your id?".On clicking this link its calls the function ShowMessage()

function ShowMessage()
      {
          alert("Contact the admin")
          return false;
      }



与管理员联系会显示为弹出消息,但会显示警告图标.我希望它带有信息图标..



Contact the admin is displayed as a pop up message ,but its displayed with a warning icon.i want it with an information icon..

推荐答案


这篇关于将警告提示更改为信息图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 20:06