主頁 > 知識庫 > 本人ajax留言板的源程序 不錯的應(yīng)用js

本人ajax留言板的源程序 不錯的應(yīng)用js

熱門標(biāo)簽:海南銀行智能外呼系統(tǒng)商家 上海浦東騰訊地圖標(biāo)注位置 澳大利亞城市地圖標(biāo)注 遼寧銀行智能外呼系統(tǒng) 姜堰電銷機(jī)器人 電銷機(jī)器人違法了嗎 遼寧正規(guī)電銷機(jī)器人 辰溪地圖標(biāo)注 許昌智能電銷機(jī)器人公司
復(fù)制代碼 代碼如下:

// 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);    //遞歸調(diào)用
  }
  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);    //遞歸調(diào)用
  }
  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) {//設(shè)置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,"正在加載數(shù)據(jù),請稍等......");
                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,"正在提交數(shù)據(jù),請稍等......");
            //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("請?zhí)顚懥粞詷?biāo)題??!");
        setf("title");
        return false;
    }
    if(f("title").length>50)
    {
        alert("對不起標(biāo)題太長了??!");
        setf("title");
        return false;
    }
    if(f("content")=="")
    {
        alert("留言內(nèi)容不能為空??!");
        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("網(wǎng)站名稱不能為空");
        $("home").focus();
        return false;
    }
    if($("url").value=="")
    {
        alert("網(wǎng)站地址不能為空!");
        $("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("新密碼和確認(rèn)密碼不一樣?。?);
        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("公告內(nèi)容不能為空!");
        setf("gonggao");
        return false;
    }
    if(f("foot")=="")
    {
        alert("版權(quán)信息不能為空!");
        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;
}

打包文件下載
您可能感興趣的文章:
  • JS實(shí)現(xiàn)留言板功能
  • js使用DOM操作實(shí)現(xiàn)簡單留言板的方法
  • jsp留言板源代碼三: 給jsp初學(xué)者.
  • JS+CSS模擬可以無刷新顯示內(nèi)容的留言板實(shí)例
  • JS實(shí)現(xiàn)留言板功能[樓層效果展示]
  • js 實(shí)現(xiàn)的可折疊留言板(附源碼下載)
  • jsp留言板源代碼二: 給jsp初學(xué)者.
  • 用ReactJS和Python的Flask框架編寫留言板的代碼示例
  • JS實(shí)現(xiàn)簡易留言板(節(jié)點(diǎn)操作)
  • js實(shí)現(xiàn)web留言板功能

標(biāo)簽:深圳 伊春 銅川 晉城 撫州 崇左 西藏 威海

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《本人ajax留言板的源程序 不錯的應(yīng)用js》,本文關(guān)鍵詞  本人,ajax,留言板,的,源程序,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《本人ajax留言板的源程序 不錯的應(yīng)用js》相關(guān)的同類信息!
  • 本頁收集關(guān)于本人ajax留言板的源程序 不錯的應(yīng)用js的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章