CINXE.COM

404页面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>404页面</title> <link type="text/css" rel="stylesheet" href="/css/RegistPage.css" /> <style type="text/css"> .content > div { padding: 20px; background-color: #f9f9f9; text-align: center; } .content > div>button { padding:0 20px; margin:5px; } </style> <script> window.onload = function() { replaceImage(); }; function replaceImage() { var randomNumber = Math.floor(Math.random() * 5); var randomImage = '/Images/404/' + randomNumber + '.png'; document.getElementById('myImage').src = randomImage; } </script> </head> <body> <div class="content"> <div> <h1>哎呀--------你访问的页面不存在了!!</h1><img id="myImage" width="960" src="" /> <button onclick="history.back()">《 返回</button> <button onclick="window.location.href='Default.aspx'"> 首页 </button> </div> <div class="clear"></div> </div> </body> </html>