<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>旁门左道 &#187; jquery</title>
	<atom:link href="http://log.medcl.net/item/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://log.medcl.net</link>
	<description>记录生活</description>
	<lastBuildDate>Tue, 29 Nov 2011 15:39:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>my jquery toggle plugin script</title>
		<link>http://log.medcl.net/item/2010/08/my-jquery-toggle-plugin-script/</link>
		<comments>http://log.medcl.net/item/2010/08/my-jquery-toggle-plugin-script/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 17:00:03 +0000</pubDate>
		<dc:creator>medcl</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://log.medcl.net/?p=535</guid>
		<description><![CDATA[通过传入当前需要显示的Id，自动展开对应的条目。（$current_news_id标示当前Id） &#60;script type=&#34;text/javascript&#34;&#62; &#60;!-- $&#40;document&#41;.ready&#40;function&#40;&#41;&#123; $&#40;&#34;div&#34;&#41;.filter&#40;&#34;.handler&#34;&#41;.click&#40; function&#40;&#41; &#123; $&#40;this&#41;.next&#40;&#34;.news_detail&#34;&#41;.toggle&#40;&#41;; &#160; &#125;&#41;; $&#40;'#n&#60;? echo $current_news_id; ?&#62;'&#41;.css&#40;&#34;display&#34;,&#34;block&#34;&#41;; &#125;&#41;; //--&#62; &#60;/script&#62; &#60;style&#62; &#60;!-- .newItem{margin-bottom:10px; } .clickme{cursor:pointer;} .news_detail{display:none;} --&#62; &#60;/style&#62; &#60;? foreach &#40;$news as $newItem&#41;&#123; ?&#62; &#60;div class=&#34;newItem&#34; style=&#34;width:100%;&#34;&#62; &#60;div class=&#34;handler nav_font&#34; &#62; &#60;a&#62;&#60;?php echo $newItem-&#62;title; ?&#62;&#60;/a&#62; &#60;span style=&#34;color:#CCCCCC;font-size:12px;font-weight:400&#34;&#62;&#60;?echo date&#40;'Y年m月d日 H:i', $newItem-&#62;pubtime&#41;; ?&#62;&#60;/span&#62;&#60;/div&#62; &#60;div id=&#34;n&#60;? echo $newItem-&#62;news_id; ?&#62;&#34; class=&#34;news_detail&#34;&#62; [...]]]></description>
		<wfw:commentRss>http://log.medcl.net/item/2010/08/my-jquery-toggle-plugin-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jquery相对浮动层</title>
		<link>http://log.medcl.net/item/2010/07/floating-layer-relative-jquery/</link>
		<comments>http://log.medcl.net/item/2010/07/floating-layer-relative-jquery/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 05:26:50 +0000</pubDate>
		<dc:creator>medcl</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[资源分享]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[relative float div]]></category>

		<guid isPermaLink="false">http://log.medcl.net/?p=529</guid>
		<description><![CDATA[jquery相对浮动层，需要这样的效果，网上找了下，没找到，自己写的一个。 &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.0 Transitional//EN&#34;&#62; &#60;HTML&#62; &#60;HEAD&#62; &#60;TITLE&#62; New Document &#60;/TITLE&#62; &#60;META NAME=&#34;Generator&#34; CONTENT=&#34;EditPlus&#34;&#62; &#60;META NAME=&#34;Author&#34; CONTENT=&#34;&#34;&#62; &#60;META NAME=&#34;Keywords&#34; CONTENT=&#34;&#34;&#62; &#60;META NAME=&#34;Description&#34; CONTENT=&#34;&#34;&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#34;&#62;&#60;/script&#62; &#160; &#60;/HEAD&#62; &#160; &#60;BODY&#62; &#60;div id=&#34;DivID&#34; style=&#34;background:#0F0; width:200px;height:200px;&#34;&#62;&#60;/div&#62; &#60;div id=&#34;float&#34; style=&#34;width:40px;height:20px;position:absolute;color:#f0f;background:#000&#34;&#62;删除&#60;/div&#62; &#160; &#60;script type=&#34;text/javascript&#34;&#62; &#160; var X = $&#40;'#DivID'&#41;.offset&#40;&#41;.top; var Y = $&#40;'#DivID'&#41;.offset&#40;&#41;.left; &#160; var xoffset=X+jQuery&#40;'#DivID'&#41;.outerHeight&#40;&#41;-jQuery&#40;'#float'&#41;.outerHeight&#40;&#41;; [...]]]></description>
		<wfw:commentRss>http://log.medcl.net/item/2010/07/floating-layer-relative-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

