DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX詳解 >> ajax入門指南(七)
ajax入門指南(七)
編輯:AJAX詳解     
ajax學習入門指南,對AJax初學者會有所幫助。

   Prototype框架
        頁面插入
        1.Insertion.Before類
                新建Insertion.Before類的實例,會將指定的Html添加到指定元素之前,並且與之相鄰
                示例:
                <div id="div1">original text</div>
                <script>
                //執行以下腳本以後,頁面的Html代碼將變為:
                //new test<div id="div1">original text</div>
                new Insertion.Before("div1","new text");
                </script>

        2.Insertion.Top類
                新建Insertion.Top類的實例,會將指定的Html添加到指定元素內部,位置在元素開始之後並且與之相鄰
                示例:
                <div id="div1">original text</div>
                <script>
               //執行以下腳本以後,元素div1的innerHtml屬性是:
                //new test original text
                new Insertion.Top("div1","new text");
                </script>

          3.Insertion.Bottom類
                新建Insertion.Bottom類的實例,會將指定的Html添加到指定元素內部,位置在元素結束標記之前並且與之相鄰
                示例:
                <div id="div1">original text</div>
                <script>
                //執行下面的腳本以後,元素div1的innerHtml屬性將是
                //original text new text
                new Insertion.Bottom("div1","new text");
                </script>

          4.Insertion.After類
                新建Insertion.After類的實例,會將指定的Html添加到指定元素之後,並且與之相鄰
                示例:
                <div id="div1">original text</div>
                <script>
                //執行下面的腳本以後,頁面的Html代碼將變為:
               //<div id="div1">original text</div>new text
                new Insertion.After("div1","new text");
                </script>
 表單支持
        1.FIEld.clear()
 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved