今天,发现一个不错的JavaScript,如果你厌倦了浏览器默认的alert提示框。那么你将会喜欢这个自定义的提示框。
使用方法很简单:
<html xmlns=""> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Custom JavaScript Dialog Boxes</title> <link rel="stylesheet" type="text/css" href="dialog_box.css" /> <script type="text/javascript" src="dialog_box.js"></script> </head> ........ 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') ....... </body> </html>
|
阅读(4475) | 评论(0) | 转发(0) |