<?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/"
		>
<channel>
	<title>评论：如何对WP实现动态加载文章内容</title>
	<atom:link href="http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/</link>
	<description>谈谈情,说说爱,非游山玩水博客...</description>
	<lastBuildDate>Wed, 08 Sep 2010 20:32:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>由：东风</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-637</link>
		<dc:creator>东风</dc:creator>
		<pubDate>Sun, 05 Sep 2010 02:41:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-637</guid>
		<description>&lt;a href=&quot;##comment-595&quot; rel=&quot;nofollow&quot;&gt;@wanwan  &lt;/a&gt; 
 我也出现了语法错误，是从你上面直接复制的，你QQ号码多少啊?我向你请教几个问题。谢谢</description>
		<content:encoded><![CDATA[<p><a href="##comment-595" rel="nofollow">@wanwan  </a><br />
 我也出现了语法错误，是从你上面直接复制的，你QQ号码多少啊?我向你请教几个问题。谢谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：jQuery+Ajax在wordpress中的应用（一） &#124; WordPress中文圈</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-635</link>
		<dc:creator>jQuery+Ajax在wordpress中的应用（一） &#124; WordPress中文圈</dc:creator>
		<pubDate>Sat, 04 Sep 2010 09:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-635</guid>
		<description>[...] 可以参加mg12的《动态加载文章内容》一文（不完全的教程），或者使用inove的同学可以看这个《如何对WP实现动态加载文章内容》（更加详细），基本上按照教程就可以了，在这里我只简单说一下自己的理解： 基本思路是不输出内容（去掉），点击后通过js输出。但我觉得不必要全部用js输出，对seo不好。以前是这样的： 1 2 3 4 5 6 7 8 9 10 11 12 13 var PRE_LOAD = 2;//定义展开几篇文章 (function(){jQuery(document).ready(function(){ jQuery(&#039;div.post&#039;).each(function(){ var id=jQuery(this).attr(&#039;id&#039;); if(/^post-[0-9]+$/.test(id)){ var toggle=jQuery(&#039;&#039;); toggle.toggle(function(){if(jQuery(&#039;#&#039;+id+&#039; .content&#039;).text()==&#039;&#039;){loadPost(id)} jQuery(&#039;#&#039;+id+&#039; .content&#039;).slideDown();jQuery(this).removeClass(&#039;collapse&#039;).addClass(&#039;expand&#039;)},function(){jQuery(&#039;#&#039;+id+&#039; .content&#039;).slideUp(); jQuery(this).removeClass(&#039;expand&#039;).addClass(&#039;collapse&#039;)}).prependTo(jQuery(&#039;#&#039;+id+&#039; h1&#039;))}}); if(PRE_LOAD&gt;0){jQuery(&#039;div.post a.toggle&#039;).each(function(index){if(indexLoading...&#039;)}, success:function(data){loadPostContent(id,data)}, error:function(data){loadPostContent(id,&#039;Oops, failed to load data. [Reload]&#039;)}})} function loadPostContent(id,data){jQuery(&#039;#&#039;+id+&#039; .content&#039;).html(data)}window[&#039;POS&#039;]={};window[&#039;POS&#039;][&#039;loadPost&#039;]=loadPost})(); [...]</description>
		<content:encoded><![CDATA[<p>[...] 可以参加mg12的《动态加载文章内容》一文（不完全的教程），或者使用inove的同学可以看这个《如何对WP实现动态加载文章内容》（更加详细），基本上按照教程就可以了，在这里我只简单说一下自己的理解： 基本思路是不输出内容（去掉），点击后通过js输出。但我觉得不必要全部用js输出，对seo不好。以前是这样的： 1 2 3 4 5 6 7 8 9 10 11 12 13 var PRE_LOAD = 2;//定义展开几篇文章 (function(){jQuery(document).ready(function(){ jQuery(&#039;div.post&#039;).each(function(){ var id=jQuery(this).attr(&#039;id&#039;); if(/^post-[0-9]+$/.test(id)){ var toggle=jQuery(&#039;&#039;); toggle.toggle(function(){if(jQuery(&#039;#&#039;+id+&#039; .content&#039;).text()==&#039;&#039;){loadPost(id)} jQuery(&#039;#&#039;+id+&#039; .content&#039;).slideDown();jQuery(this).removeClass(&#039;collapse&#039;).addClass(&#039;expand&#039;)},function(){jQuery(&#039;#&#039;+id+&#039; .content&#039;).slideUp(); jQuery(this).removeClass(&#039;expand&#039;).addClass(&#039;collapse&#039;)}).prependTo(jQuery(&#039;#&#039;+id+&#039; h1&#039;))}}); if(PRE_LOAD&gt;0){jQuery(&#039;div.post a.toggle&#039;).each(function(index){if(indexLoading&#8230;&#039;)}, success:function(data){loadPostContent(id,data)}, error:function(data){loadPostContent(id,&#039;Oops, failed to load data. [Reload]&#039;)}})} function loadPostContent(id,data){jQuery(&#039;#&#039;+id+&#039; .content&#039;).html(data)}window[&#039;POS&#039;]={};window[&#039;POS&#039;][&#039;loadPost&#039;]=loadPost})(); [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：wanwan</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-612</link>
		<dc:creator>wanwan</dc:creator>
		<pubDate>Wed, 21 Jul 2010 02:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-612</guid>
		<description>hi, maybe, you can use the Google for anything. i am too busy and have no time to translate this article for you. i just say sorry to you.</description>
		<content:encoded><![CDATA[<p>hi, maybe, you can use the Google for anything. i am too busy and have no time to translate this article for you. i just say sorry to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：patembe</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-611</link>
		<dc:creator>patembe</dc:creator>
		<pubDate>Thu, 15 Jul 2010 20:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-611</guid>
		<description>&lt;a href=&quot;##comment-595&quot; rel=&quot;nofollow&quot;&gt;@wanwan &lt;/a&gt; 
hello buddy, I really do not understand how to implement your tip (exactly because I don&#039;t understand chinese :lol: ) could you help me? I have read one comment that you have upload http://www.cqnv.net/inove.rar but when I try to download it seems the file have been remove :(
Some help will be appreciated..

regards,</description>
		<content:encoded><![CDATA[<p><a href="##comment-595" rel="nofollow">@wanwan </a><br />
hello buddy, I really do not understand how to implement your tip (exactly because I don&#8217;t understand chinese <img src='http://www.cqnv.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  ) could you help me? I have read one comment that you have upload <a href="http://www.cqnv.net/inove.rar" rel="nofollow">http://www.cqnv.net/inove.rar</a> but when I try to download it seems the file have been remove <img src='http://www.cqnv.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Some help will be appreciated..</p>
<p>regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：冰剑</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-599</link>
		<dc:creator>冰剑</dc:creator>
		<pubDate>Thu, 27 May 2010 05:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-599</guid>
		<description>&lt;a href=&quot;//www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/#comment-594&quot; rel=&quot;nofollow&quot;&gt;@wanwan &lt;/a&gt; 
明白了，我一开始以为是WP自带有这个方法，原来是自己弄上去的。。
谢谢啦。。</description>
		<content:encoded><![CDATA[<p><a href="//www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/#comment-594" rel="nofollow">@wanwan </a><br />
明白了，我一开始以为是WP自带有这个方法，原来是自己弄上去的。。<br />
谢谢啦。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：江南阴雨</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-598</link>
		<dc:creator>江南阴雨</dc:creator>
		<pubDate>Wed, 26 May 2010 14:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-598</guid>
		<description>用了你的方法，应该操作的都正确，但是图标文件调用不出来，上传你的图标文件后，页面的图标就乱了，有的不显示，那个展开按钮跑到路径前面，求解决办法</description>
		<content:encoded><![CDATA[<p>用了你的方法，应该操作的都正确，但是图标文件调用不出来，上传你的图标文件后，页面的图标就乱了，有的不显示，那个展开按钮跑到路径前面，求解决办法</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：wanwan</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-595</link>
		<dc:creator>wanwan</dc:creator>
		<pubDate>Wed, 26 May 2010 01:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-595</guid>
		<description>&lt;a href=&quot;//www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/#comment-508&quot; rel=&quot;nofollow&quot;&gt;@雾寒  &lt;/a&gt; 
你没有设置啊,我去你网站看了的.</description>
		<content:encoded><![CDATA[<p><a href="//www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/#comment-508" rel="nofollow">@雾寒  </a><br />
你没有设置啊,我去你网站看了的.</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：wanwan</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-594</link>
		<dc:creator>wanwan</dc:creator>
		<pubDate>Wed, 26 May 2010 01:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-594</guid>
		<description>&lt;a href=&quot;//www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/#comment-593&quot; rel=&quot;nofollow&quot;&gt;@冰剑  &lt;/a&gt; 
第一步,修改INOVE主题中的index.php文件:
这步你做到了没?呵呵</description>
		<content:encoded><![CDATA[<p><a href="//www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/#comment-593" rel="nofollow">@冰剑  </a><br />
第一步,修改INOVE主题中的index.php文件:<br />
这步你做到了没?呵呵</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：冰剑</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-593</link>
		<dc:creator>冰剑</dc:creator>
		<pubDate>Tue, 25 May 2010 15:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-593</guid>
		<description>请问，为什么我直接访问 http://www.xx.com/?action=load_post&amp;id=123 就回到了我的首页？
而访问您的却是返回ID 123的日志内容？</description>
		<content:encoded><![CDATA[<p>请问，为什么我直接访问 <a href="http://www.xx.com/?action=load_post&amp;id=123" rel="nofollow">http://www.xx.com/?action=load_post&amp;id=123</a> 就回到了我的首页？<br />
而访问您的却是返回ID 123的日志内容？</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：jQuery+Ajax在wordpress中的应用（一） - 电脑网络 - ajax - jQuery - WordPress - Winy Sky</title>
		<link>http://www.cqnv.com/post/how-realize-development-loading-article-content-to-wp/comment-page-2/#comment-589</link>
		<dc:creator>jQuery+Ajax在wordpress中的应用（一） - 电脑网络 - ajax - jQuery - WordPress - Winy Sky</dc:creator>
		<pubDate>Tue, 11 May 2010 17:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.cqnv.com/?p=1331#comment-589</guid>
		<description>[...] (三）Ajax首页动态显示效果（仿Mg12） 你可以看到著名的inove主题作者mg12新首页，前三篇文章输出全文，后面只显示标题，点击右侧三角才会动态载入内容。这个可以减小首页大小，尤其是视屏和图片比较多的站点，也是提高访客体验的一直。（当然，坏处也是明显的，对SEO可能有影响，mg12也提到了一种“欺骗”搜索引擎的方法来避免） 可以参加mg12的《动态加载文章内容》一文（不完全的教程），或者使用inove的同学可以看这个《如何对WP实现动态加载文章内容》（更加详细），基本上按照教程就可以了，在这里我只简单说一下自己的理解： 基本思路是不输出内容（去掉），点击后通过js输出。但我觉得不必要全部用js输出，对seo不好。以前是这样的： [...]</description>
		<content:encoded><![CDATA[<p>[...] (三）Ajax首页动态显示效果（仿Mg12） 你可以看到著名的inove主题作者mg12新首页，前三篇文章输出全文，后面只显示标题，点击右侧三角才会动态载入内容。这个可以减小首页大小，尤其是视屏和图片比较多的站点，也是提高访客体验的一直。（当然，坏处也是明显的，对SEO可能有影响，mg12也提到了一种“欺骗”搜索引擎的方法来避免） 可以参加mg12的《动态加载文章内容》一文（不完全的教程），或者使用inove的同学可以看这个《如何对WP实现动态加载文章内容》（更加详细），基本上按照教程就可以了，在这里我只简单说一下自己的理解： 基本思路是不输出内容（去掉），点击后通过js输出。但我觉得不必要全部用js输出，对seo不好。以前是这样的： [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
