復制代碼 代碼如下:
// JavaScript Document
function $(id)
{
return document.getElementById(id);
}
function echo(obj,html)
{
$(obj).innerHTML=html;
}
function fopen(obj)
{
$(obj).style.display="";
}
function fclose(obj)
{
$(obj).style.display="none";
}
function lTrim(str)
{
if (str.charAt(0) == " ")
{
//如果字串左邊第一個字符為空格
str = str.slice(1);//將空格從字串中去掉
//這一句也可改成 str = str.substring(1, str.length);
str = lTrim(str); //遞歸調用
}
return str;
}
//去掉字串右邊的空格
function rTrim(str)
{
var iLength;
iLength = str.length;
if (str.charAt(iLength - 1) == " ")
{
//如果字串右邊第一個字符為空格
str = str.slice(0, iLength - 1);//將空格從字串中去掉
//這一句也可改成 str = str.substring(0, iLength - 1);
str = rTrim(str); //遞歸調用
}
return str;
}
//去掉字串兩邊的空格
function trim(str)
{
return lTrim(rTrim(str));
}
function sck(s)
{
return s.replace(/\n/g,"[br]");
//s=s.replace(chr(13)&chr(23),"<br />");
//return s;
}
function f(obj)
{
return trim(eval("document.forms[0]."+obj+".value"));
//return trim($(obj).value);
}
function setf(obj)
{
return eval("document.forms[0]."+obj+".focus();");
}
function show(obj)
{
var s=$(obj).style;
s.display=s.display=="none" ? "" : "none";
}
function echo(obj,html)
{
$(obj).innerHTML=html;
}
function createxmlhttp()
{
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
if (xmlhttp.overrideMimeType) {//設置MiME類別
xmlhttp.overrideMimeType('text/xml');
}
}
return xmlhttp;
}
function getnum(url,obj)
{
//var b="";
var xmlhttp=createxmlhttp();
if(!xmlhttp)
{
alert("你的浏覽器不支持XMLHTTP!!");
return;
}
xmlhttp.onreadystatechange=requestdata;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
function requestdata(){
if(xmlhttp.readyState==4)
{
if(xmlhttp.status==200)
{
$(obj).value=xmlhttp.responseText;
}
}
}
}
function getdata(url,obj1,obj2)
{
var xmlhttp=createxmlhttp();
if(!xmlhttp)
{
alert("你的浏覽器不支持XMLHTTP!!");
return;
}
xmlhttp.onreadystatechange=requestdata;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
function requestdata()
{
fopen(obj1);
echo(obj1,"正在加載數據,請稍等......");
if(xmlhttp.readyState==4)
{
if(xmlhttp.status==200)
{
if(obj1!=obj2){fclose(obj1);};
echo(obj2,xmlhttp.responseText);
}
}
}
}
function postdata(url,obj,data)
{
var xmlhttp=createxmlhttp();
if(!xmlhttp)
{
alert("你的浏覽器不支持XMLHTTP!!");
return;
}
xmlhttp.open("POST", url, true);
xmlhttp.onreadystatechange=requestdata;
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlhttp.send(data);
function requestdata()
{
fopen(obj);
echo(obj,"正在提交數據,請稍等......");
//alert(xmlhttp.readyState);
if(xmlhttp.readyState==4)
{
//alert(xmlhttp.status);
if(xmlhttp.status==200)
{
echo(obj,xmlhttp.responseText);
}
}
}
}
function checkform(obj,id)
{
if(f("user")=="")
{
alert("請留下您的大名!!");
setf("user");
return false;
}
if(f("user").length>10 && f("user")<2 )
{
alert("姓名長度只能在2-10位之間!!");
}
if(f("title")=="")
{
alert("請填寫留言標題!!");
setf("title");
return false;
}
if(f("title").length>50)
{
alert("對不起標題太長了!!");
setf("title");
return false;
}
if(f("content")=="")
{
alert("留言內容不能為空!!");
setf("content");
return false;
}
data="user="+escape(f("user"))+"&title="+escape(f("title"))+"&content="+escape(document.forms[0].content.value)+"&reply="+escape(f("reply"));
//alert(data);
// data="content="+escape(sck(f("content")));
if(obj=="add")
{
//alert(obj);
postdata("file.asp?action=addsave","contentdata",data);
}else if(obj=="reply")
{
postdata("file.asp?action=replysave","contentadmin"+id,data);
}
return true;
}
function adminlogin()
{
if($("adminuser").value=="")
{
alert("管理帳號不能為空!");
$("adminuser").focus();
return false;
}
if($("adminpwd").value=="")
{
alert("管理密碼不能為空!");
$("adminpwd").focus();
return false;
}
data="adminuser="+escape($("adminuser").value)+"&adminpwd="+escape($("adminpwd").value);
postdata("file.asp?action=checkadmin","loginlist",data);
return true;
}
function adreset()
{
$("adminuser").value="";
$("adminpwd").value="";
}
function linktool()
{
if($("linktool").innerHTML=="自助鏈接")
{
$("linktool").innerHTML="友情鏈接";
getdata("list.asp?action=addlink","linklist","linklist");
}else
{
$("linktool").innerHTML="自助鏈接";
getdata("list.asp?action=linklist","linklist","linklist");
}
}
function addlink()
{
if($("home").value=="")
{
alert("網站名稱不能為空");
$("home").focus();
return false;
}
if($("url").value=="")
{
alert("網站地址不能為空!");
$("url").focus();
return false;
}
data="home="+escape($("home").value)+"&url="+escape($("url").value);
postdata("list.asp?action=linksave","linklist",data);
return true;
}
function linkreset()
{
$("home").value="";
$("url").value="";
}
function updatepwd()
{
if(f("user")=="")
{
alert("請輸入管理帳號!");
setf("user");
return false;
}
if(f("npwd")=="")
{
alert("請輸入管理密碼!");
setf("npwd");
return false;
}
if(f("npwd")!=f("npwd1"))
{
alert("新密碼和確認密碼不一樣!!");
setf("npwd");
return false;
}
data="user="+escape(f("user"))+"&pwd="+escape(f("npwd"));
postdata("list.asp?action=savepwd","contentdata",data);
return true;
}
function updateinfo()
{
if(f("gonggao")=="")
{
alert("公告內容不能為空!");
setf("gonggao");
return false;
}
if(f("foot")=="")
{
alert("版權信息不能為空!");
setf("foot");
return false;
}
data="news="+escape(document.forms[0].gonggao.value)+"&foot="+escape(document.forms[0].foot.value);
postdata("list.asp?action=infosave","contentdata",data);
return true;
}
打包文件下載