自定义的JS对话框

关键字:

今天刚发现的一个好东东,如果你已经厌倦了JavaScript的alert,可以尝试用用这个,效果不错,使用也比较简单,例如:

Js代码
showDialog( ' Error ' , ' You have encountered an error. ' , ' error ' , 2 );

showDialog(
' Warning ' , ' You must enter all required information. ' , ' warning ' )

showDialog(
' Success ' , ' Your request has been successfully received. ' , ' success ' )

showDialog(
' Confirmation ' , ' Are you sure you want to delete the entry? ' , ' prompt ' )

 相应的效果截图如下:

 

源代码下载地址:

Download the source

原文链接:

Custom JavaScript Dialog Boxes

你可能感兴趣的:(Web)