DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中wrapAll()方法用法實例教程
jQuery中wrapAll()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery中wrapAll()方法用法。分享給大家供大家參考。具體分析如下:

此方法將所有匹配的元素用單個元素包裹起來。
此方法與wrap()方法雖然功能類似,但是有著很大區別。wrap()方法會把每一個匹配的元素都匹配一次。

語法一:

用指定的DOM元素去包裹匹配元素。
代碼如下:$(selector).wrapAll(elem)
參數列表:
參數 描述 elem 用於包裹目標的DOM元素。

實例:

代碼如下:
<!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">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://www.cnblogs.com/" />
<head>
<title>博客園</title>
<style type="text/css">
    div
   {
       width:200px;
       height:200px;
       border:1px solid blue;
       margin-top:10px;
    }
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $("button").click(function(){
            $("p").wrapAll(document.getElementById("content"));
        });
    });
</script>
</head>
<body>
    <p>我是個段落</p>
    <p>我是個段落</p>
    <div id="content"></div>
    <button>用div包裹每個段落</button>
</body>
</html>

語法二:

用html標記代碼包裹匹配的元素。
代碼如下:$(selector).wrapAll(html)
參數列表:
參數 描述 elem 用於包裹目標的DOM元素。

實例:

代碼如下:
<!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">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://www.cnblogs.com/" />
<head>
<title>博客園</title>
<style type="text/css">
    .content
   {
        width:200px;
        height:200px;
        border:1px solid blue;
    }
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $("button").click(function(){
            $("p").wrapAll("<div class='content'></div>");
        });
    });
</script>
</head>
<body>
   <p>這是個段落</p>
   <p>這是個段落</p>
   <button>用div包裹每個段落</button>
</body>
</html>

希望本文所述對大家的jQuery程序設計有所幫助。

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