|
1火车车厢
本地127.0.0.1测试采集成功,发布成功。可是用自己的空间采集成功,发布时错误。什么情况啊?帮忙看看~
光线CMS。
源代码:<!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>
<title>友情提示</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv='Refresh' content='3;URL=javascript:history.back(-1);'>
</head>
<body>
<table border="0" align="center" cellpadding="5" cellspacing="1" style="font-size:14px;color:#333333;margin-top:100px;background:#70afd3">
<tr style="background:url(./views/images/install/top_bg.gif);color:#FFFFFF">
<th>操作失败!</th>
</tr>
<tr><td height="100" style="font-size:12px; background:#FFFFFF">
<div style="font-size:14px;font-weight:bold;margin:10px;">表单令牌错误</div>
<div style="margin:10px;">系统将在 <span id="countDownSec" style="color:blue;font-weight:bold">3</span> 秒后自动跳转,如果不想等待,直接 <a href="javascript:history.back(-1);" style="color:#069;">点击这里</a></div>
</td></tr>
</table>
<script language="javascript" type="text/javascript">
var countDown = function(timer,eleId,interType){
document.getElementById(eleId).innerHTML = timer;
var interval = interType=='s'?1000interType=='m'?1000*60:1000*60*60);
window.setInterval(function(){
timer--;
if (timer > 0) {
document.getElementById(eleId).innerHTML = timer;
}
},interval);
};
countDown(parseInt(3),'countDownSec','s');
</script>
</body>
</html>
========分隔线=======
ID:35 |
|