<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
	>
<channel>
	<title>jQueryでchildなNodesをdocument.getElementしたい へのコメント</title>
	<atom:link href="http://dounokouno.com/2008/09/09/jquery%e3%81%a7child%e3%81%aanodes%e3%82%92documentgetelement%e3%81%97%e3%81%9f%e3%81%84/feed/" rel="self" type="application/rss+xml" />
	<link>http://dounokouno.com/2008/09/09/jquery%e3%81%a7child%e3%81%aanodes%e3%82%92documentgetelement%e3%81%97%e3%81%9f%e3%81%84/</link>
	<description>Webの技術、漫画、城、ベースに興味があります。</description>
	<lastBuildDate>Mon, 26 Sep 2011 05:33:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>tagawa より</title>
		<link>http://dounokouno.com/2008/09/09/jquery%e3%81%a7child%e3%81%aanodes%e3%82%92documentgetelement%e3%81%97%e3%81%9f%e3%81%84/comment-page-1/#comment-248</link>
		<dc:creator>tagawa</dc:creator>
		<pubDate>Thu, 18 Sep 2008 15:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://dounokouno.com/?p=73#comment-248</guid>
		<description>&gt; $(document).ready( function() { … } );
&gt; は，
&gt; $( function() { … } );
&gt; と書けますよ．

そうなんですねー。
勉強になります＞＜</description>
		<content:encoded><![CDATA[<p>> $(document).ready( function() { … } );<br />
> は，<br />
> $( function() { … } );<br />
> と書けますよ．</p>
<p>そうなんですねー。<br />
勉強になります＞＜</p>
]]></content:encoded>
	</item>
	<item>
		<title>issm より</title>
		<link>http://dounokouno.com/2008/09/09/jquery%e3%81%a7child%e3%81%aanodes%e3%82%92documentgetelement%e3%81%97%e3%81%9f%e3%81%84/comment-page-1/#comment-247</link>
		<dc:creator>issm</dc:creator>
		<pubDate>Fri, 12 Sep 2008 06:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://dounokouno.com/?p=73#comment-247</guid>
		<description>ゴメンナサイ．
↑のHTMLの部分がタグとして認識されてしまったみたいです＞＜

以下，その部分を改めて．

&lt;div id=&quot;hogehoge&quot;&gt;
&lt;ul&gt;
&lt;li&gt;hoge&lt;/li&gt;
&lt;li&gt;fuga&lt;/li&gt;
&lt;li&gt;piyo&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>ゴメンナサイ．<br />
↑のHTMLの部分がタグとして認識されてしまったみたいです＞＜</p>
<p>以下，その部分を改めて．</p>
<p>&lt;div id=&#8221;hogehoge&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;hoge&lt;/li&gt;<br />
&lt;li&gt;fuga&lt;/li&gt;<br />
&lt;li&gt;piyo&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>issm より</title>
		<link>http://dounokouno.com/2008/09/09/jquery%e3%81%a7child%e3%81%aanodes%e3%82%92documentgetelement%e3%81%97%e3%81%9f%e3%81%84/comment-page-1/#comment-246</link>
		<dc:creator>issm</dc:creator>
		<pubDate>Fri, 12 Sep 2008 06:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://dounokouno.com/?p=73#comment-246</guid>
		<description>ちょっと趣旨がずれているかもしれませんが，とりあえず．



hoge
fuga
piyo



のようなHTMLにおいて各li要素にマウスイベントを持たせたい場合には，

$( &#039;li&#039;, &#039;#hogehoge&#039; ).each( function() {
  $( this ).hover( function() { ... } );
};

のようにかけますね．

$( &#039;li&#039;, &#039;#hogehoge&#039; ).hover( function() { ... } );

のように書けたかもしれませんが，これは試したことないです．

ちなみに，

$(document).ready( function() { ... } );

は，

$( function() { ... } );

と書けますよ．</description>
		<content:encoded><![CDATA[<p>ちょっと趣旨がずれているかもしれませんが，とりあえず．</p>
<p>hoge<br />
fuga<br />
piyo</p>
<p>のようなHTMLにおいて各li要素にマウスイベントを持たせたい場合には，</p>
<p>$( &#8216;li&#8217;, &#8216;#hogehoge&#8217; ).each( function() {<br />
  $( this ).hover( function() { &#8230; } );<br />
};</p>
<p>のようにかけますね．</p>
<p>$( &#8216;li&#8217;, &#8216;#hogehoge&#8217; ).hover( function() { &#8230; } );</p>
<p>のように書けたかもしれませんが，これは試したことないです．</p>
<p>ちなみに，</p>
<p>$(document).ready( function() { &#8230; } );</p>
<p>は，</p>
<p>$( function() { &#8230; } );</p>
<p>と書けますよ．</p>
]]></content:encoded>
	</item>
	<item>
		<title>an より</title>
		<link>http://dounokouno.com/2008/09/09/jquery%e3%81%a7child%e3%81%aanodes%e3%82%92documentgetelement%e3%81%97%e3%81%9f%e3%81%84/comment-page-1/#comment-245</link>
		<dc:creator>an</dc:creator>
		<pubDate>Tue, 09 Sep 2008 23:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://dounokouno.com/?p=73#comment-245</guid>
		<description>なんとかでなんとかななんとかのっていうギャル語みたいにみえた＠ｗ＠</description>
		<content:encoded><![CDATA[<p>なんとかでなんとかななんとかのっていうギャル語みたいにみえた＠ｗ＠</p>
]]></content:encoded>
	</item>
</channel>
</rss>

