zoukankan      html  css  js  c++  java
  • mootools 14 ajax

    很久没有用过mootools,以前用的是1.1,现在升级到1.4了。下载新版下来发现AJAX的实现方法都变了,做个demo留个记号。

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>AJAXTest1--requestText</title>

        <script src="http://www.cnblogs.com/mootools/mootools-core-1[1].4.1-full-nocompat.js" type="text/javascript"></script>
        
        <script type="text/javascript">
        window.addEvent('domready',function(){
            $('btnSent').addEvent('click',function(){
                var url='ajaxtest.aspx?v='+escape($('txtValue').value);
                var myRequest = new Request({method: 'post', url: url,onComplete:showMsg});
                myRequest.send('v='+escape($('txtValue').value));  
            });
           function showMsg(requestText){
               $('divRebackMsg').innerHTML=requestText;
           }
        });
        </script>
    </head>
    <body>
        <input id="txtValue" type="text" />
        <input id="btnSent" type="button" value="发送" />
        <div id="divRebackMsg"></div>
    </body>
    </html>

    在后台page_load里输出“Hello,Mootools !”

  • 相关阅读:
    解析HTTP协议六种请求方法
    金蝶
    普元
    中间件
    [CTSC2008] 网络管理
    【Uva 10498】满意值
    【SPOJ839】最优标号
    bzoj2879 [Noi2012]美食节
    bzoj3144 [Hnoi2013]切糕
    bzoj3112 [Zjoi2013]防守战线
  • 原文地址:https://www.cnblogs.com/mimengjiangnan/p/2238971.html
Copyright © 2011-2022 走看看