Ajax無重新整理評論

來源:互聯網
上載者:User

 

今天在優酷看了一個軍情觀察室,順便發一個評論,感覺在優酷發評論使用者體驗很好,無重新整理發表評論,今天用了一點時候也做了一個。其實還可以做分頁的,不過現在沒什麼時間,還有畢業論文沒有弄好,沒有時間作解析。只好寫到這裡了。主要用到prototype架構建立的一個AJAX架構。

前台代碼

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %><!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 runat="server">    <title>無標題頁</title>    <script language="javascript" type="text/javascript" src="prototype1.6.1.js"></script>    <script language="javascript" type="text/javascript">    function postdata()    {        var name=$F("name");        var content=$F("content");        var postbody="name="+name+"&content="+content;        var myAjax= new Ajax.Request("showcomment.aspx",{mothod:"post",postBody:postbody,onCreate:oncreate,onComplete:callback})        function oncreate()        {            $("show").innerHTML+="<img src='loadlist.gif'/>載入中..."        }                function callback(obj)        {          //  alert(myAjax.transport);            $("show").innerHTML=obj.responseText;//            $F("show")=obj.responseText;                    }    }               </script>    <style>    #show    {        }    #showTitle    {    background-color:Silver;    }        </style>        </head><body onload="postdata();">    <form id="form1" runat="server">    <div>    <div id="show"></div>    <div id="post">    <input id="name" type="text" /><br />    <textarea id="content" cols="20" rows="2"></textarea><br />        <input id="Button1" type="button" value="button" onclick="postdata();" />    </div>        </div>        </form></body></html>

 

圖示:

 

coding: http://www.cnblogs.com/Files/yangcai/ajaxComment.rar

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.