﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?xml-stylesheet type="text/xsl"   href="/resources/rss/testRss.xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  <channel>
    <title>吕的部落格</title>
    <link>http://www.lvjiyong.com</link>
    <description />
    <language>zh-cn</language>
    <pubDate>Thu, 05 Jun 2008 03:02:58 GMT</pubDate>
    <lastBuildDate>Thu, 05 Jun 2008 03:02:58 GMT</lastBuildDate>
    <generator>吕的部落格 Version 1.0.0.0</generator>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.lvjiyong.com/tag/jquery/rss" type="application/rss+xml" />
    <item>
      <title>jQuery 1.2.6 faster faster</title>
      <link>http://www.lvjiyong.com/item/jquery126</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Thu, 05 Jun 2008 03:02:58 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/jquery126</guid>
      <wfw:comment>http://www.lvjiyong.com/item/jquery126</wfw:comment>
      <comment>http://www.lvjiyong.com/item/jquery126#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/jquery126</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/jquery126</trackback:ping>
      <description><![CDATA[s is the next release immediately following jQuery 1.2.3. Releases 1.2.4 and 1.2.5 were skipped (1.2.4 was built incorrectly, rendering it effectively identical to 1.2.3, and 1.2.5 was missing a patch). <p>The entire jQuery team did a fantastic job in pulling this release together - I want to take this opportunity to thank them all for their continued hard work.</p> <p>I&rsquo;d also like to take this opportunity to welcome Ariel Flesler to the core jQuery development team. He provided valuable help in pulling this release together - contributing bug fixes, performance improvements, features, and test cases. You can see the result of his hard work all throughout this release. Welcome Ariel and thank him for all his contributions!</p> <h2>Downloading</h2> <p><strong>jQuery 1.2.6:</strong></p> <ul><li><strong>Recommended</strong> Hosted Code with Google: <a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery">AJAX Libraries API</a></li><li><a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.min.js">jQuery Minified</a> (15kb with <a href="http://www.julienlecomte.net/blog/2007/08/13/">Gzipping</a>)</li><li><a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.pack.js">jQuery Packed</a> (30kb)</li><li><a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.js">jQuery Regular</a> (100kb)</li></ul><a href="http://jquery.com/blog/">原文详细</a>]]></description>
    </item>
    <item>
      <title>使用jQuery自动缩图片</title>
      <link>http://www.lvjiyong.com/item/37817</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Sat, 22 Sep 2007 00:56:20 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37817</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37817</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37817#postComment</comment>
      <slash:comments>4</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37817</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37817</trackback:ping>
      <description><![CDATA[那天在服务器上临时增加了一点小脚本,昨天更新的给覆盖掉了.<br />今天一早就收到老板的通知,图片尺寸自己又不会缩了.这里先备一个份,省得下次又得重新写.<br />具体思路:<br /> <ol>     <li>通过具体容器取得容器内所有图片</li>     <li>循环检查所有图片长宽</li>     <li>对超过的图重新定高度.</li> </ol> 直接写成一个扩展好了,以后可以直接用.<br /><br /> <p class="code">  /* 自动缩略一些大图的小JS<br />&nbsp;&nbsp;&nbsp; 吕 lvjiyong@Gmail.com<br />&nbsp;&nbsp;&nbsp; http://www.lvjiyong.com/tag/jquery/<br />&nbsp;&nbsp;&nbsp; 更新:2007.9.22</p><p class="code">更新2007.9.28 <br /></p><p class="code">*/<br />jQuery.fn.ImageAutoSize = function(width,height)<br />{<br />&nbsp;&nbsp;&nbsp; $(&quot;img&quot;,this).each(function()<br />&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; var image = $(this);<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(image.width()&gt;width)<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; image.width(width);<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; image.height(width/image.width()*image.height());<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(image.height()&gt;height)<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; image.height(height);<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; image.width(height/image.height()*image.width());<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp; });<br />} </p> 调用:先引用上面的脚本或将上页的脚本放入自己的JS库,然后只要再加 <p class="code">$(function(){ $(&quot;图片组所在的容器&quot;).ImageAutoSize(限制最大宽,限制最大高);});</p>]]></description>
    </item>
    <item>
      <title>jQuery的jQuery.post与无刷新评论</title>
      <link>http://www.lvjiyong.com/item/37815</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Mon, 17 Sep 2007 02:19:46 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37815</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37815</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37815#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37815</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37815</trackback:ping>
      <description><![CDATA[简单无刷新是个简单的问题<br />但结合评论就稍微复杂了点.<br />1.收集数据(可能包括,标题,内容,与用户信息)<br />2.客户端检查数据合法性,如标题有没有填写,内容长度够不够等<br />3.向服务端发送数据<br />4.信息反馈回客户.<br />5.刷新当前评论列表<br />6.收缩发表评论表单区(可选)<br /><br />jQuery.post的应用:<br />在3步骤绑定 error 和success,而success还要处理 是否成功(这个与脚本本身无关,只是返回服务端信息,但因为成功与失败都是同样返回,具体区别还要在返回信息上做点小标记.略过<br /><br />asp.net下的应用.<br />asp.net下有ajax.net,但这个框架有点大了,本人只有后台(用户登录后)应用,前台可见UI不提倡使用的.<br />jquery使用 <span style="font-weight: bold;">元素.类名</span> 定位信息的速度比 控件ID 定位理论上慢点,只一般WEB页面是感觉不出的,所以.net下还是可以<span style="font-weight: bold;">元素.类名</span> 进行定位,摆脱ID自动生成的麻烦,实现脚本与asp.net无关的无缝结合.<br /><br /><br /><br />]]></description>
    </item>
    <item>
      <title>jQuery1.2正式版推出</title>
      <link>http://www.lvjiyong.com/item/jquery1-2-release</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Wed, 12 Sep 2007 00:14:13 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/jquery1-2-release</guid>
      <wfw:comment>http://www.lvjiyong.com/item/jquery1-2-release</wfw:comment>
      <comment>http://www.lvjiyong.com/item/jquery1-2-release#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/jquery1-2-release</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/jquery1-2-release</trackback:ping>
      <description><![CDATA[像jQuery博客上说的,这是一个质的更新.在经历了这么多小版本更新后,终于决定定位1.2版本.]]></description>
    </item>
    <item>
      <title>修改Jquery的thickbox的默认值</title>
      <link>http://www.lvjiyong.com/item/37714</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Wed, 09 May 2007 03:42:17 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37714</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37714</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37714#postComment</comment>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37714</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37714</trackback:ping>
      <description><![CDATA[thickbox默认载入方式是ajax<br />没有默认高和宽<br />同时在IE下当页面内容小的时候只能遮照有内容部分，即不能完全遮照，像个BUG不怎么好看。<br />修改了下让默认载入试为iframe，同时设置默认高与宽，最后修正了IE下的遮照问题。]]></description>
    </item>
    <item>
      <title>jQuery 1.1.2</title>
      <link>http://www.lvjiyong.com/item/37637</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Fri, 02 Mar 2007 01:16:13 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37637</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37637</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37637#postComment</comment>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37637</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37637</trackback:ping>
      <description><![CDATA[<h2>Download</h2> <ul><li><strong><a href="http://jquery.com/src/jquery-1.1.2.pack.js">Compressed JavaScript</a></strong> (Recommended Download!)</li><li><a href="http://jquery.com/src/jquery-1.1.2.js">Uncompressed JavaScript</a></li><li><a href="http://jquery.com/src/jquery-1.1.2.release.zip">Full Release (jQuery, Test Suite, Documentation)</a></li><li><a href="http://jquery.com/src/jquery-1.1.2.build.zip">Build Files (Compile your own version of jQuery 1.1.2)</a></li></ul>]]></description>
    </item>
    <item>
      <title>JS框架有更新吗？</title>
      <link>http://www.lvjiyong.com/item/37621</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Mon, 26 Feb 2007 01:25:58 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37621</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37621</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37621#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37621</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37621</trackback:ping>
      <description><![CDATA[Ajax.net最近好像没什么变动，没好好翻。<br /> prototype还是老样子<br />  Jquery最近动作很大，不断结合和吸引一些外Framework，到时候可以结合Yahoo UI与 OpenAjax。<br />  效果是更酷了，唉，不过有种说不出的感觉。<br /> 国人对Jquery的关注非是一般啊，看到好多中文留言，哈，prototype的关注就没这么热切，是否prototype太规范了，而jquery就显得自由？]]></description>
    </item>
    <item>
      <title>jQuery Nightly Builds</title>
      <link>http://www.lvjiyong.com/item/37619</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Thu, 15 Feb 2007 00:10:11 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37619</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37619</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37619#postComment</comment>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37619</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37619</trackback:ping>
      <description><![CDATA[jQuery Nightly不知道算哪个版本，作者是在情人节的前一天放出来的。]]></description>
    </item>
    <item>
      <title>Using jQuery with Other Libraries</title>
      <link>http://www.lvjiyong.com/item/37618</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Tue, 13 Feb 2007 00:21:16 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37618</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37618</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37618#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37618</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37618</trackback:ping>
      <description><![CDATA[一直没有怎么看JQuery更新后的<a href="http://docs.jquery.com/">Documentation</a>，原来为兼用Prototype，他们给出了好几个解决方法。]]></description>
    </item>
    <item>
      <title>用好JQuery的Interface,让你事半功倍</title>
      <link>http://www.lvjiyong.com/item/37590</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Sat, 27 Jan 2007 03:39:45 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37590</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37590</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37590#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37590</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37590</trackback:ping>
      <description><![CDATA[Interface也随着Jquery升级到1.1.1版本了,总体来说没有多少变化.不知道有没有朋友研究过(其实不用研究,用就行了,<img alt="" src="http://www.lvjiyong.com/FCKeditor/editor/images/smiley/msn/wink_smile.gif" />),适当地应用包你事半功倍从<a href="http://interface.eyecon.ro/interface/interface_1.1.1.zip">原地址下载</a>,<a href="http://www.ajax-master.com/Ajax/JQuery/interface/1.1.1/interface_1.1.1.zip">中国电信下载</a>]]></description>
    </item>
    <item>
      <title>JQuery Using CSS and XPath Together </title>
      <link>http://www.lvjiyong.com/item/37588</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Sat, 27 Jan 2007 02:18:07 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37588</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37588</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37588#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37588</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37588</trackback:ping>
      <description><![CDATA[Using CSS and XPath Together <br />This is a point of confusion, for some: How can you use CSS and XPath together, they're so different! jQuery makes some allowances to make this happen, but we think that developers will really appreciate the advantages of each language. Here are some examples:]]></description>
    </item>
    <item>
      <title>JQuery API/1.1.1/Events</title>
      <link>http://www.lvjiyong.com/item/37587</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Sat, 27 Jan 2007 02:03:39 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37587</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37587</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37587#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37587</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37587</trackback:ping>
      <description><![CDATA[<p>bind( type, data, fn ) <br />Binds a handler to a particular event (like click) for each matched element. The event handler is passed an event object that you can use to prevent default behaviour. To stop both default action and event bubbling, your handler has to return false. </p><p>In most cases, you can define your event handlers as anonymous functions (see first example). In cases where that is not possible, you can pass additional data as the second paramter (and the handler function as the third), see second example. </p>]]></description>
    </item>
    <item>
      <title>上传了JQuery1.1.1版本的的API速查手册(API DOCS)</title>
      <link>http://www.lvjiyong.com/item/37583</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Wed, 24 Jan 2007 00:57:52 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37583</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37583</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37583#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37583</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37583</trackback:ping>
      <description><![CDATA[<p>因为访问外国网站慢,自己放个API DOCS查找起来也方便些</p><p><a href="http://www.ajax-master.com/Ajax/JQuery/jquery-1.1.1.release/docs">jquery-1.1.1.release docs &amp; api</a> &nbsp;| &nbsp;<a href="http://www.ajax-master.com/Ajax/JQuery/jquery-1.1.1.release/docs/cat.xml">jquery-1.1.1.release api maps</a> </p>]]></description>
    </item>
    <item>
      <title>JQuery更新后的 API/1.1.1/Ajax</title>
      <link>http://www.lvjiyong.com/item/37581</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Tue, 23 Jan 2007 02:52:20 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37581</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37581</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37581#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37581</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37581</trackback:ping>
      <description><![CDATA[详细多了]]></description>
    </item>
    <item>
      <title>JQuery更新了好几天了</title>
      <link>http://www.lvjiyong.com/item/37573</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Fri, 19 Jan 2007 08:37:59 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37573</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37573</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37573#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37573</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37573</trackback:ping>
      <description><![CDATA[<p>jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. <strong>jQuery is designed to change the way that you write JavaScript.</strong> </p><p class="download_link uncompressed"><span><a href="http://jquery.com/src/jquery-latest.js"><font color="#000000">Download</font></a> jQuery (<strong><font color="#d02c2c">un</font></strong>compressed) 55kb</span> Great for testing, learning and development</p><p class="download_link uncompressed"><span><a href="http://jquery.com/src/jquery-latest.pack.js"><font color="#000000">Download</font></a> jQuery (compressed) 19kb</span> Great for production use</p>]]></description>
    </item>
    <item>
      <title>JTip终于也用上了.</title>
      <link>http://www.lvjiyong.com/item/tooltips-with-jquery-jtip</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Tue, 16 Jan 2007 23:57:26 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/tooltips-with-jquery-jtip</guid>
      <wfw:comment>http://www.lvjiyong.com/item/tooltips-with-jquery-jtip</wfw:comment>
      <comment>http://www.lvjiyong.com/item/tooltips-with-jquery-jtip#postComment</comment>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/tooltips-with-jquery-jtip</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/tooltips-with-jquery-jtip</trackback:ping>
      <description><![CDATA[<p>用这个利用AJAX重入代替原来的Title提示,显示的内容更加随意，呵呵，但如果提示内容带有链接,则需要自己可以下jtip里的事件,因为默认是鼠标在链接上则提示，而移开则不提示，所以不可能点上链接，<a href="http://www.ajax-master.com/Ajax/Jquery/jquery-tooltip/">在线演示(原版)</a></p>]]></description>
    </item>
    <item>
      <title>使用JQuery快速实现Tab的AJAX动态载入</title>
      <link>http://www.lvjiyong.com/item/ajax-tab-width-jquery</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Wed, 03 Jan 2007 08:29:17 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/ajax-tab-width-jquery</guid>
      <wfw:comment>http://www.lvjiyong.com/item/ajax-tab-width-jquery</wfw:comment>
      <comment>http://www.lvjiyong.com/item/ajax-tab-width-jquery#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/ajax-tab-width-jquery</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/ajax-tab-width-jquery</trackback:ping>
      <description><![CDATA[TAB样式部分请自己定义,<a href="http://cn.oktaizhou.com/">也可参考我的</a><br /> 简单讲一下实现过程:<br /> <ol><li>找到链接源,我这里是一串的Li下的链接</li><li>处理样式</li><li>当鼠标移过时载入链接源的网站到指定容器,并切换样式</li><li>让点击事件返回false,这里不会应该点击到链接源网页</li><li>Over了.<br />   </li></ol> <a href="http://cn.oktaizhou.com/"></a>]]></description>
    </item>
    <item>
      <title>JQuery API Book</title>
      <link>http://www.lvjiyong.com/item/37463</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Thu, 21 Dec 2006 04:22:58 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37463</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37463</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37463#postComment</comment>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37463</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37463</trackback:ping>
      <description><![CDATA[<img width="80" height="54" align="right" alt="" src="http://www.lvjiyong.com/UserFiles/demo/Image/ico/jquery.gif" />JQuery的API实在是太多了，经过补充后，更加丰富，我在使用的时候老是翻的头大，还好，他们官方网上还是有API查询的，只是中国的电信访问外国网站实在是夸张，妈的现在还要变相提高上网费用。<br />JQuery官方API地址（建议网通用户访问）：<br /><a href="http://jquery.com/api/">http://jquery.com/api/</a><br />JQuery本地API地址（建议电信用户访问）：<br /><a href="http://www.ajax-master.com/Ajax/Jquery/API/">http://www.ajax-master.com/Ajax/Jquery/API/</a>]]></description>
    </item>
    <item>
      <title>Jquery的tab更新了</title>
      <link>http://www.lvjiyong.com/item/37407</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Sat, 09 Dec 2006 00:37:46 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/37407</guid>
      <wfw:comment>http://www.lvjiyong.com/item/37407</wfw:comment>
      <comment>http://www.lvjiyong.com/item/37407#postComment</comment>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/37407</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/37407</trackback:ping>
      <description><![CDATA[把CallBack变成了好几个事件,奶奶的,还真不习惯]]></description>
    </item>
    <item>
      <title>正在使用JQuery开发一个小东西</title>
      <link>http://www.lvjiyong.com/item/work-with-jquery</link>
      <dc:creator>吕</dc:creator>
      <author>吕</author>
      <pubDate>Sun, 12 Nov 2006 11:31:49 GMT</pubDate>
      <guid>http://www.lvjiyong.com/item/work-with-jquery</guid>
      <wfw:comment>http://www.lvjiyong.com/item/work-with-jquery</wfw:comment>
      <comment>http://www.lvjiyong.com/item/work-with-jquery#postComment</comment>
      <slash:comments>4</slash:comments>
      <wfw:commentRss>http://www.lvjiyong.com/comment/work-with-jquery</wfw:commentRss>
      <trackback:ping>http://www.lvjiyong.com/trackback/work-with-jquery</trackback:ping>
      <description><![CDATA[主要还是用来做无刷新效果<br />这东西用起来还是挺方便的,但Prototype更严谨,这应该也是所有接触过这两个东西人的想法.<br />Jquery好东西,prototype也是,原想着把两个结合,但感觉prototype里有的jquery差不多也有了,因为Jquery所有想法就是参考prototype的...]]></description>
    </item>
  </channel>
</rss>