<!doctype html public '-//w3c//dtd xhtml 1.0 transitional//en' 'http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd'><html><head><title>页面提示</title><meta http-equiv="content-type" content="text/html; charset=utf-8"><meta http-equiv='refresh' content='3;url=javascript:history.back(-1);'><style>html, body{margin:0; padding:0; border:0 none;font:14px tahoma,verdana;line-height:150%;background:white}
a{text-decoration:none; color:#174b73; border-bottom:1px dashed gray}
a:hover{color:#f60; border-bottom:1px dashed gray}
div.message{margin:10% auto 0px auto;clear:both;padding:5px;border:1px solid silver; text-align:center; width:45%}
span.wait{color:blue;font-weight:bold}
span.error{color:red;font-weight:bold}
span.success{color:blue;font-weight:bold}
div.msg{margin:20px 0px}
</style></head><body><div class="message"><div class="msg"><span class="error">操作失败！错误操作！</span></div><div class="tip">		页面将在 <span class="wait" id="wait">3</span> 秒后自动跳转，如果不想等待请点击 <a href="javascript:history.back(-1);" id="href">这里</a> 跳转</div></div><script type="text/javascript">(function(){
var wait = document.getelementbyid('wait'),href = document.getelementbyid('href').href;
var interval = setinterval(function(){
	var time = --wait.innerhtml;
	wait.innerhtml = time;
	if(time <= 0) {
		location.href = href;
		clearinterval(interval);
	};
}, 1000);
})();
</script></body></html>