▼ID名が「gallery」の要素の中にあるすべてのimg要素をひとまとめにして指定したHTMLコンテンツで囲みます。
<!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" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="ja" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<title>DOM制御・更新処理:周囲にコンテンツを挿入:wrapAll(html)の使用例 | jQuery</title>
<link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
<!-- JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
/* ID名が「gallery」の要素の中にあるすべてのimg要素をひとまとめにして指定したHTMLコンテンツで囲む */
$("#gallery img").wrapAll("<div></div>");
});
</script>
<style type="text/css">
#gallery div { border:10px solid #000; overflow:hidden; height:100%; background:#000; }
#gallery img { margin:0 10px 0 0; border:1px solid #fff; width:110px; height:85px; background-color:orange; float:left; }
</style>
<link rel="stylesheet" type="text/css" href="/common/css/example.css"></head>
<body id='example3' class='example'><div class="ads" style="margin:32px auto;text-align:center;"></div><h1 class='h'><a href='/'>PHP & JavaScript Room</a> :: 設置サンプル</h1>
<h3 class='h'>実行結果</h3>
<div id="wrap">
<h1>DOM制御・更新処理:周囲にコンテンツを挿入:wrapAll(html)の使用例 | jQuery</h1>
<p>▼ID名が「gallery」の要素の中にあるすべてのimg要素をひとまとめにして指定したHTMLコンテンツで囲みます。</p>
<!-- CODE -->
<div id="gallery" class="cf">
<img src="http://farm4.static.flickr.com/3222/2974008614_736e2d5b50_t.jpg" width="100" height="75" alt="くまさんケーキ" />
<img src="http://farm4.static.flickr.com/3222/2974008614_736e2d5b50_t.jpg" width="100" height="75" alt="くまさんケーキ" />
<img src="http://farm4.static.flickr.com/3222/2974008614_736e2d5b50_t.jpg" width="100" height="75" alt="くまさんケーキ" />
</div>
<!-- CODE / -->
</div>
</body>
</html>