<?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:trackback="http://madskills.com/public/xml/rss/module/trackback/"><channel><title>Me,小蛀米也.</title><link>http://www.i170.com/user/lezwin/Rss</link><description></description><language>zh-cn</language><pubDate>Sun, 23 Nov 2008 04:18:52  +0800</pubDate><generator>i170.com</generator><image><title>Me,小蛀米也.</title><url>http://www.i170.comattavatar_1/lezwin.BMP</url><link>http://www.i170.com/user/lezwin/Rss</link></image> <item><link>http://www.i170.com/Article/51199</link><title><![CDATA[jquery-Tutorials/Basics翻译]]></title><author>lezwin</author><category>jsframkwork+library</category><pubDate>Tue, 12 Dec 2006 20:45:04  +0800</pubDate><description><![CDATA[<font size="4"><strong>指南/</strong><strong>基础<br>
<br></strong></font>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
这是一个基础指南，旨在帮助你开始使用jquery。jquery给予你常见问题的解决方法。如果你尚未建立你的测试页面，我建议你创建一个含有下列内容的HTML页：<br>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
&lt;html&gt;<br>
&lt;head&gt;<br>
<font color="#FF0000">&lt;script type="text/javascript"<br>
src="link/to/jquery.js"&gt;&lt;/script&gt;</font><br>
&lt;script type="text/javascript"&gt;<br>
// Your code goes here<br>
&lt;/script&gt;<br>
&lt;/head&gt;<br>
&lt;body&gt;<br>
&lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt;<br>
&lt;/body&gt;<br>
&lt;/html&gt;</div>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
修改script标签的src属性指向到你的jquery.js。例如，如果你的jQuery.js与你的HTML文件在同一目录，你可以这样：<br>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
&lt;script type="text/javascript"
src="jquery.js"&gt;&lt;/script&gt;</div>
<strong>文档载入时运行代码</strong><br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 首先， 大多数JavaScript程序员会用类似代码:
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
window.onload = function(){ ... }</div>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
访问HTML文档的元素，必须先载入文档对象模型(DOM)。当window.onload函数执行的时候，说明所有东西已经载入，包括图像和横幅等等。要知道较大的图片下载速度会比较慢，因此用户必须等待大图片下载完毕才能看到window.onload()执行的代码效果，这样就花费了很长的等待时间，这不是我们想要的。<br>
<div id="result_box" dir="ltr">&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
对于此，jquery提供了一个"ready"事件,你可以使用以下的代码片段：&nbsp;</div>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$(document).ready(function(){<br>
// 你的代码<br>
});</div>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$(document)意思是说，获取文档对象（类似的于window.document），$(document).ready意思就是说，获取文档对象就绪的时候。</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
上面这段代码的意思是检查文档对象直到它能够允许被操作（译者注：这样做比window.onload()函数要快的多，因为只要文档对象载入完成就能够执行代码了，而不需要等待页面中的图片下载是否已经完成）---这是我们想要的。因此将上面的代码片段粘贴到你测试页面的脚本区吧！<br>
<br>
<strong>鼠标点击时的触发<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;</strong>
首先，我们尝试鼠标点击超链接时触发某些行为。在ready函数里加入以下代码：</p>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$("a").click(function(){<br>
alert("谢谢你的来临!");<br>
});<br></div>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
保存HTML文件，然后刷新一下页面。点击某个超链接，页面将弹出警告对话框。<br>
<strong><br>
增加 CSS Class</strong><br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 另外一个事情就是，一个共同的任务：增加或移除元素的css
class，例如:<br>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$("a").addClass("test");</div>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$("a").removeClass("test");</div>
&nbsp;&nbsp;&nbsp; 如果你已经在页面头部加入了：
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
&lt;style&gt;a{text-weight:bolder}&lt;/style&gt;</div>
&nbsp;&nbsp;&nbsp; 那么当你调用了addClass函数后，所有超链接的字体将变成粗体。<br>
<br>
<strong>特效<br>
&nbsp;&nbsp;&nbsp;</strong> <a href=
"http://jquery.com/docs/FxModule/"><span class="wiki">Effects
Module</span></a>(效果模块)提供了一系列好用的特效。<br>
<br>
&nbsp;&nbsp;&nbsp; 加上下面代码：
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$("a").click(function(){<br>
&nbsp;&nbsp;&nbsp; $(this).hide("slow");<br>
&nbsp;&nbsp;&nbsp; return false;<br>
});</div>
<p>&nbsp;&nbsp;&nbsp; 现在，只要你点击超链接，超链接就会慢慢的消失。“return
false"表示保留默认行为，因此页面不会跳转。<br>
<br>
<strong>回调<br>
<br>
&nbsp;&nbsp;&nbsp;</strong>
所谓回调就是父函数执行完成后，自身能够作为返回值传递到另一个函数的函数。回调功能的特别之处在于，出现在“父函数"后面的函数可以在回调函数执行前执行。</p>
<p>&nbsp;&nbsp;&nbsp; 另外一个重点是要知道如何正确运用回调，我就常常忘记了正确语法。<br>
<br>
&nbsp;&nbsp;&nbsp; <strong>一个不带参数的回调应该这样写：</strong></p>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$.get('myhtmlpage.html', myCallBack);</div>
&nbsp;&nbsp;&nbsp; 注意第二个参数是一个简单的函数名(它不是字符，也没有带括号)<br>
<br>
<strong>&nbsp;&nbsp;&nbsp; 那么带参数的回调该怎么写呢？<br>
&nbsp;&nbsp;&nbsp;</strong>
错误的写法，下面这样写是不行的(或者不会执行)：<strong><br></strong>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$.get('myhtmlpage.html', myCallBack(param1,param2));</div>
&nbsp;&nbsp;&nbsp; 正确的写法：<br>
<div class="wiki" style=
"BORDER-RIGHT: rgb(204,204,204) 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: rgb(204,204,204) 1px solid; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; MARGIN: 8px; BORDER-LEFT: rgb(204,204,204) 1px solid; COLOR: green; PADDING-TOP: 8px; BORDER-BOTTOM: rgb(204,204,204) 1px solid; BACKGROUND-COLOR: rgb(235,235,235)">
$.get('myhtmlpage.html', function(){<br>
&nbsp;&nbsp;&nbsp; myCallBack(param1,param2);<br>
});</div>
&nbsp;&nbsp;&nbsp; 这样就实现了回调一个带参函数的功能。<br>
<font size="4"><strong><br>
后记<br></strong><font size="1">&nbsp;&nbsp;&nbsp;</font></font>
&nbsp; 到这里，也许你应该去看看其余的<a href=
"http://jquery.com/docs/">文档</a>了。里面包括更多的<a href=
"http://jquery.com/tutorials">指南</a>-它很全面,涵盖了jquery各个方面。如果大家有问题，请放心的给我发Email。<br>
<div id="result_box" dir="ltr">&nbsp;&nbsp;&nbsp;
当然，你也可以看看利用jQuery做的多种<a href=
"http://jquery.com/demos/">DEMO</a>。</div>

]]></description><guid>http://www.i170.com/Article/51199</guid><trackback:ping>http://www.i170.com/Article/51199/trackback</trackback:ping><comments>http://www.i170.com/Article/51199#comment</comments><wfw:commentRss>http://www.i170.com/Article/51199/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/50950</link><title><![CDATA[jQuery专用]]></title><author>lezwin</author><category>jsframkwork+library</category><pubDate>Sun, 10 Dec 2006 21:13:23  +0800</pubDate><description><![CDATA[$是jQuery主要调用方法，有点类似Prototype的$，不过jQuery的$比Prototype的$似乎汇率要高些！<img src="/htmledit/editor/images/smiley/msn/regular_smile.gif"
alt=""><br>
<pre>
$(document).ready(function(){<br>
  // mycode...<br>
});
</pre>
什么意思？就像window.onload()那样，页面载入完毕便执行，不同的是用上面的方法将会比window.onload()快！<br>
<br>
]]></description><guid>http://www.i170.com/Article/50950</guid><trackback:ping>http://www.i170.com/Article/50950/trackback</trackback:ping><comments>http://www.i170.com/Article/50950#comment</comments><wfw:commentRss>http://www.i170.com/Article/50950/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/22405</link><title><![CDATA[噢,i170改版了]]></title><author>lezwin</author><category>哎壹柒零</category><pubDate>Wed, 19 Apr 2006 11:31:14  +0800</pubDate><description><![CDATA[<p>
很久没上来了，现在上来发现这里改变很大耶~!不但是界面的改变，而且是体验的改变，很多地方应用了AJAX不说，内容方面也作了很多调整!</p>
<p>&nbsp;</p>
<p>
粗略看了看这些改动，觉得很不错，不过很多细节的地方都存在很多的问题，例如假设我是一个新用户的话，很多地方就会让我感到很茫然，我想，这里是不是缺少了个帮助(教程)什么的呢？</p>
<p>&nbsp;</p>
<p>
当然，让用户自己去体验的确是一件很有趣的事情，但是是否要有个清晰的入门帮助呢？我觉得这点170就做得不够了!因为我找了很久，好像没找到帮助~!
例如我的社区关系网是怎么弄的呢？不熟悉改版后新生事物的我就不知道这个关系网到底是怎么来的了，主页上我找不到帮助!</p>
<p>&nbsp;</p>
<p>相信这些问题i170都是可以解决的，这些都需要用户去多多体验，发现问题提出来，希望大家也多提问题吧!</p>

]]></description><guid>http://www.i170.com/Article/22405</guid><trackback:ping>http://www.i170.com/Article/22405/trackback</trackback:ping><comments>http://www.i170.com/Article/22405#comment</comments><wfw:commentRss>http://www.i170.com/Article/22405/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/7747</link><title><![CDATA[I170的问题，这么久了，还没修改过来]]></title><author>lezwin</author><category>哎壹柒零</category><pubDate>Sun, 20 Nov 2005 17:37:22  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
我说的就是那个搜索功能，不知道大家平时有没有用，我不认为这个搜索功能发挥了多大的作用，你在搜索框里随便打个字母看看，发现问题了吧!这个问题我反馈好久了也没有改善!希望有人回复一下我的意见!</p>

]]></description><guid>http://www.i170.com/Article/7747</guid><trackback:ping>http://www.i170.com/Article/7747/trackback</trackback:ping><comments>http://www.i170.com/Article/7747#comment</comments><wfw:commentRss>http://www.i170.com/Article/7747/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/6079</link><title><![CDATA[XML-RPC]]></title><author>lezwin</author><category>AJAX相关</category><pubDate>Mon, 07 Nov 2005 00:40:14  +0800</pubDate><description><![CDATA[<p>XML-RPC协议的说明书是<a href=
"http://www.xmlrpc.com/spec"><u><font color=
"#0000DD">http://www.xmlrpc.com/spec</font></u></a>，作者是<em>Dave
Winer</em>。有兴趣可以参考参考，下面贴一个简单的用于通讯的XML。</p>
<p>&nbsp;&nbsp;&nbsp; &lt;methodCall&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&lt;methodName&gt;sample.sumAndDifference&lt;/methodName&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;params&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&lt;param&gt;&lt;value&gt;&lt;int&gt;5&lt;/int&gt;&lt;/value&gt;&lt;/param&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&lt;param&gt;&lt;value&gt;&lt;int&gt;3&lt;/int&gt;&lt;/value&gt;&lt;/param&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/params&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;/methodCall&gt;</p>
<p>&nbsp;</p>
<dl>
<dt><tt class="literal">int：有符号32位整型数</tt></dt>
<dt><tt class=
"literal">string：ASCII字符串，可以包含NULL字节。（实际上很多XML-RPC支持Unicode，这要归功于XML的潜在特性。）</tt></dt>
<dt><tt class="literal">boolean：true 或者 false</tt>&nbsp;</dt>
<dt><tt class="literal">double：双精度浮点数</tt></dt>
<dt><tt class=
"literal">dateTime.iso8601：日期，很不幸的是自从XML-RPC禁止了使用时区，这个便很少被使用了。</tt></dt>
<dt><tt class=
"literal">base64：任意长度的原始二进制数据；使用Base64算法编码，非常有用。</tt></dt>
<dt><tt class="literal">array：一维数组</tt></dt>
<dt><tt class=
"literal">struct：一组“键-值”对，“键”是字符串，“值”可以是任何类型。</tt></dt>
</dl>

]]></description><guid>http://www.i170.com/Article/6079</guid><trackback:ping>http://www.i170.com/Article/6079/trackback</trackback:ping><comments>http://www.i170.com/Article/6079#comment</comments><wfw:commentRss>http://www.i170.com/Article/6079/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/5383</link><title><![CDATA[好久没来了]]></title><author>lezwin</author><category>Life</category><pubDate>Mon, 31 Oct 2005 00:52:27  +0800</pubDate><description><![CDATA[<p>
&nbsp;&nbsp;&nbsp;&nbsp;好久没来更新了，这段时间晚上都很少上网，每天对电脑，晚上回到家感觉很想睡觉!</p>
<p>有时竟然还没冲凉就在大厅睡着了!工作真的很累人，不是工作量大，而是每天对着公司那台闪得要命的破显示器，眼睛很累，然后就很想睡觉
!好想公司换液晶啊，再这样下去，我的眼睛会更坏了!痛苦ing...</p>
<p>&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;这段时间感觉好像没什么重要的事情要写下来，我有个兴趣，不过不知道我这个年龄是否还适合去玩，我是个门外汉，不知道从头开始去学要花多少的时间，不过我喜欢这个东西，我一定会学好的!只要有兴趣，那么自然就会有动力，对吧!</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;</p>

]]></description><guid>http://www.i170.com/Article/5383</guid><trackback:ping>http://www.i170.com/Article/5383/trackback</trackback:ping><comments>http://www.i170.com/Article/5383#comment</comments><wfw:commentRss>http://www.i170.com/Article/5383/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/3879</link><title><![CDATA[Repeater嵌套使用]]></title><author>lezwin</author><category>程序</category><pubDate>Wed, 12 Oct 2005 00:32:04  +0800</pubDate><description><![CDATA[<div><font color="#000000">看下面的嵌套</font></div>
<div><font color="#000000"><span style=
"COLOR: #0000ff">&lt;</span><span style=
"COLOR: #800000">asp:Repeater&nbsp;</span><span style=
"COLOR: #ff0000">id</span><span style=
"COLOR: #0000ff">="CategoryLevel1"</span><span style=
"COLOR: #ff0000">&nbsp;runat</span><span style=
"COLOR: #0000ff">="server"</span><span style=
"COLOR: #0000ff">&gt;</span></font><span style=
"COLOR: #000000"><br>
<font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></span>
<font color="#000000"><span style=
"COLOR: #0000ff">&lt;</span><span style=
"COLOR: #800000">ItemTemplate</span></font><span style=
"COLOR: #0000ff"><font color=
"#000000">&gt;<br></font></span><span style=
"COLOR: #000000"><font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #ffff00">&lt;%</span> <span id=
"Codehighlighter1_530_575_Closed_Text" style=
"BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">
</span><span id="Codehighlighter1_530_575_Open_Text"><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">#&nbsp;DataBinder.</span>
<span style=
"COLOR: #0000ff; BACKGROUND-COLOR: #f5f5f5">Eval</span><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">(Container.DataItem,</span>
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</span><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">Title</span>
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</span><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">)&nbsp;</span></span>
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #ffff00">%&gt;</span></font>
<span style="COLOR: #000000"><br></span><font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></span>
<font color="#000000">&nbsp; <span style=
"COLOR: #000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=
"COLOR: #0000ff">&lt;</span><span style=
"COLOR: #800000">asp:Repeater&nbsp;</span><span style=
"COLOR: #ff0000">id</span><span style=
"COLOR: #0000ff">="CategoryLevel2"</span><span style=
"COLOR: #ff0000">&nbsp;runat</span><span style=
"COLOR: #0000ff">="server"</span></font><font color=
"#000000"><span style="COLOR: #000000">&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
<span style="COLOR: #0000ff">&lt;</span><span style=
"COLOR: #800000">ItemTemplate</span><span style=
"COLOR: #0000ff">&gt;</span></font><span style=
"COLOR: #000000"><br>
<font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></span>
<font color="#000000"><span style=
"COLOR: #000000; BACKGROUND-COLOR: #ffff00">&lt;%</span> <span id=
"Codehighlighter1_530_575_Closed_Text" style=
"BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">
</span><span id="Codehighlighter1_530_575_Open_Text"><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">#&nbsp;DataBinder.</span>
<span style=
"COLOR: #0000ff; BACKGROUND-COLOR: #f5f5f5">Eval</span><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">(Container.DataItem,</span>
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</span><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">Title</span>
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</span><span style=
"COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">)&nbsp;</span></span>
<span style=
"COLOR: #000000; BACKGROUND-COLOR: #ffff00">%&gt;</span></font>
<span style="COLOR: #000000"><br>
<font color="#000000"><img src=
"http://www.cnblogs.com/Images/OutliningIndicators/None.gif" align=
"top" alt=
"img">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></span>
<font color="#000000"><span style=
"COLOR: #0000ff">&lt;/</span><span style=
"COLOR: #800000">ItemTemplate</span><span style=
"COLOR: #0000ff">&gt;</span></font><span style=
"COLOR: #000000"><br>
<font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></span>
<font color="#000000"><span style=
"COLOR: #0000ff">&lt;/</span><span style=
"COLOR: #800000">asp:Repeater</span><span style=
"COLOR: #0000ff">&gt;</span></font><span style=
"COLOR: #000000"><br>
<font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></span>
<font color="#000000"><span style=
"COLOR: #0000ff">&lt;/</span><span style=
"COLOR: #800000">ANW:AdvancedPanel</span><span style=
"COLOR: #0000ff">&gt;</span></font><font color=
"#000000"><span style="COLOR: #000000">&nbsp;&nbsp;&nbsp;&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=
"COLOR: #0000ff">&lt;/</span><span style=
"COLOR: #800000">ItemTemplate</span><span style=
"COLOR: #0000ff">&gt;</span></font><span style=
"COLOR: #000000"><br>
<font color="#000000">&nbsp;&nbsp;</font></span><font color=
"#000000"><span style="COLOR: #0000ff">&lt;/</span><span style=
"COLOR: #800000">asp:Repeater</span><span style=
"COLOR: #0000ff">&gt;</span></font></div>
<div>&nbsp;</div>
<div><font color="#000000">&nbsp;</font> <span style=
"COLOR: #0000ff"><font color=
"#000000">外面的Repeater只需要直接绑定数据就可以了。</font></span></div>
<div>&nbsp;</div>
<p class="partingline">[separator]</p>
<div><span style="COLOR: #0000ff"><font color=
"#000000">先在后台PAGE_LOAD()里面绑定外层Repeater,然后写一个事件，用来获取内层Repeater的数据源，并绑定！</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">如</font></span></div>
<div><span style="COLOR: #0000ff"><font color="#000000">private
DataSet getSubRPT(object
sender,System.Web.UI.WebControls.RepeaterItemEventArgs&nbsp;e)</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">{</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000"><span style="COLOR: #0000ff">&nbsp;&nbsp;&nbsp;&nbsp;
if</span><span style=
"COLOR: #000000">&nbsp;(e.Item.ItemType&nbsp;</span><span style=
"COLOR: #000000">==</span><span style=
"COLOR: #000000">&nbsp;ListItemType.Item&nbsp;</span><span style=
"COLOR: #000000">||</span><span style=
"COLOR: #000000">&nbsp;&nbsp;&nbsp;&nbsp;e.Item.ItemType&nbsp;</span>
<span style="COLOR: #000000">==</span></font><font color=
"#000000"><span style=
"COLOR: #000000">&nbsp;ListItemType.AlternatingItem)&nbsp;&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;</span> <span id=
"Codehighlighter1_269_608_Closed_Text" style=
"BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">
</span></font><span id=
"Codehighlighter1_269_608_Open_Text"><font color=
"#000000"><span style="COLOR: #000000">{&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Repeater&nbsp;cate2&nbsp;</span>
<span style="COLOR: #000000">=</span><span style=
"COLOR: #000000">&nbsp;(Repeater)&nbsp;e.Item.FindControl(</span>
<span style="COLOR: #000000">"</span><span style=
"COLOR: #000000">CategoryLevel2</span><span style=
"COLOR: #000000">"</span></font><font color="#000000"><span style=
"COLOR: #000000">);&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=
"COLOR: #008000">//</span><span style=
"COLOR: #008000">找到分类Repeater关联的数据项</span></font><font color=
"#000000"><span style=
"COLOR: #008000">&nbsp;<br></span><span style="COLOR: #000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DataRowView&nbsp;rowv&nbsp;</span>
<span style="COLOR: #000000">=</span></font><font color=
"#000000"><span style=
"COLOR: #000000">&nbsp;(DataRowView)e.Item.DataItem;&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=
"COLOR: #008000">//</span><span style=
"COLOR: #008000">提取分类ID</span></font><font color=
"#000000"><span style=
"COLOR: #008000">&nbsp;<br></span><span style="COLOR: #000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
<span style="COLOR: #0000ff">int</span><span style=
"COLOR: #000000">&nbsp;CategorieId&nbsp;</span><span style=
"COLOR: #000000">=</span><span style=
"COLOR: #000000">&nbsp;Convert.ToInt32(rowv[</span><span style=
"COLOR: #000000">"</span><span style=
"COLOR: #000000">ID</span><span style=
"COLOR: #000000">"</span></font><font color="#000000"><span style=
"COLOR: #000000">]);&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=
"COLOR: #008000">//</span><span style=
"COLOR: #008000">根据分类ID查询，并绑定</span></font><span style=
"COLOR: #008000"><br></span><font color="#000000"><span style=
"COLOR: #000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cate2.DataSource&nbsp;</span>
<span style="COLOR: #000000">=</span></font><span style=
"COLOR: #000000"><font color=
"#000000">&nbsp;this.rpt2_ds(CategorieId);&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cate2.DataBind();&nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;}</font></span></span> <span style=
"COLOR: #000000"><br></span></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">}</font></span></div>
<div><font color="#000000">&nbsp;</font></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">private&nbsp;DataSet rpt2_ds(int id)</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">{</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
//返回所需数据的DataSet</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">}</font></span></div>
<div><font color="#000000">&nbsp;</font></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">然后在InitializeComponent()函数里面加入：</font></span></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">this.CategoryLevel2.ItemDataBind += new
RepeaterItemEventHandler(getSubRPT);</font></span></div>
<div><font color="#000000">&nbsp;</font></div>
<div><span style="COLOR: #0000ff"><font color=
"#000000">其它控件，如DataList,DataGrid用法也类同。</font></span></div>
<div><font color="#000000"><br></font></div>

]]></description><guid>http://www.i170.com/Article/3879</guid><trackback:ping>http://www.i170.com/Article/3879/trackback</trackback:ping><comments>http://www.i170.com/Article/3879#comment</comments><wfw:commentRss>http://www.i170.com/Article/3879/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/3743</link><title><![CDATA[酒精上脑，感觉真好]]></title><author>lezwin</author><category>Life</category><pubDate>Mon, 10 Oct 2005 00:36:57  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
今天一个朋友生日，去她的PARTY玩了一晚，虽不算尽兴，但也很开心，喝了几杯，头脑还算清醒！</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
趁着酒精没散，说点什么！记得上次喝几杯的时候是国庆节的前一天晚上，那天晚上和村里面的朋友喝了几杯，可能是有点过头了，一回到家就倒头大睡，现在也有点睏意，不过先不想睡，而是想说说什么的！</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;想说什么呢？一时之间也想不出来，但倒是很想说说话！这个时候是没办法找人说话的了，明天还要上班，朋友们睡的睡了，去玩的玩了，我能干些什么？还是早点睡吧，免得明天不想起来！</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
前几天是我的生日，生日也罢，平凡的日子罢了，和几个朋友去吃了个宵夜！多年的朋友了，由于为了自各的前途，每个人都有自己的发展方向，沟通少了，感情自然也淡了，在一起也没有太多的话说，为什么人会变成那样呢？我发现我的朋友开始越来越少了，是不是我的圈子太小了呢？</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 啊，不说了，我要睡了，眼睏了！晚安各位！</p>

]]></description><guid>http://www.i170.com/Article/3743</guid><trackback:ping>http://www.i170.com/Article/3743/trackback</trackback:ping><comments>http://www.i170.com/Article/3743#comment</comments><wfw:commentRss>http://www.i170.com/Article/3743/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/3159</link><title><![CDATA[历险记]]></title><author>lezwin</author><category>Life</category><pubDate>Wed, 28 Sep 2005 23:12:45  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;&nbsp;
今天晚上体验了一次丛林历险记，虽说是坐在车经过，但是在弯弯曲曲的从林小路里穿过真的好刺激，我老爸开的车，开的飞快，前面跟本不看不到路嘛，还是呼呼的开过去，很爽啊！头文字D的感觉。也不知道那村了怎么那么的偏僻，世外桃园一样（但不漂亮，只是隐蔽了点)。让我自己再走一次，我肯定迷路。今天累啊，受完刺激回到家十一点了，明天还要上班呢？希望今天晚上睡觉的时候，脑袋里不要再出现那些画面，要不肯定睡不好了。</p>

]]></description><guid>http://www.i170.com/Article/3159</guid><trackback:ping>http://www.i170.com/Article/3159/trackback</trackback:ping><comments>http://www.i170.com/Article/3159#comment</comments><wfw:commentRss>http://www.i170.com/Article/3159/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/3043</link><title><![CDATA[政府部门]]></title><author>lezwin</author><category>Life</category><pubDate>Mon, 26 Sep 2005 21:48:38  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;
可爱的政府部门，原来你的员工每天只需工作七个半小时，连标准的国际工作时间八小时都达不到！你的员工真的爽呆了，去除双休了，他们也才工作30来小时，这样的工作哪里找啊？你的员工也太幸福了。</p>
<p>&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;可爱的政府部门，你的员工真的很威风，找他们办事，还很能有好脸色看，这样的服务态度哪里能找到啊？你的员上班时间非常的准，连一秒都不放过，不达上班时间抠绝服务，连门口都不让进，还真遵守规定啊！</p>
<p>&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;可爱的政府部门，便民不是你的一项原则吗？怎么停车场只看见你员工的车辆？我只看见人民群众都是从外面走进来的！</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp;可爱的政府部门，你太可爱了以致于我不能不爱你！没有你我还是不行啊！</p>

]]></description><guid>http://www.i170.com/Article/3043</guid><trackback:ping>http://www.i170.com/Article/3043/trackback</trackback:ping><comments>http://www.i170.com/Article/3043#comment</comments><wfw:commentRss>http://www.i170.com/Article/3043/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/2919</link><title><![CDATA[角色转换]]></title><author>lezwin</author><category>Life</category><pubDate>Sat, 24 Sep 2005 20:21:06  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;&nbsp;
我不知道有多少人是以自己为中心的，语言行为都不考虑别人的感受。都不会转换一下角色，如果位置对调，不知道他（她）是否受得了呢？</p>
<p>&nbsp;&nbsp;&nbsp; 人啊，怎么就不会替别人想一想呢？</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;每个人都有他（她）的想法和做法，为什么你就坚持你的一定是对的呢？做什么事都不经大脑处理，想到就说，想到就做！</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;
人要做到设身处地为他人着想是不可能的，没有人是圣人，因此我们没必要做到完美，但做人也该有个度啊！</p>
<p>&nbsp;&nbsp;&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;最痛苦的是，他（她）做了令人不好受的事还混然不知，真的是火冒三尺而无处发泄。此种人最好不要开口跟他（她）说话。</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;</p>

]]></description><guid>http://www.i170.com/Article/2919</guid><trackback:ping>http://www.i170.com/Article/2919/trackback</trackback:ping><comments>http://www.i170.com/Article/2919#comment</comments><wfw:commentRss>http://www.i170.com/Article/2919/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/2560</link><title><![CDATA[今天去钓虾]]></title><author>lezwin</author><category>Life</category><pubDate>Sun, 18 Sep 2005 21:33:00  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp;
今天晚饭时间去钓虾场钓虾。第一次钓，觉得很有意思，虽然钓得不多，刚开始半个小时才上来一个，搞得很没信心，后来有个朋友指点了下技巧，自然钓得就快多了。</p>
<p>不过还是很差，两个小时才钓了一斤多。</p>
<p>&nbsp;&nbsp;
钓虾要很有技巧才行，感觉到有虾上钓，先把钓杆提一提，感觉手有点沉，就缓缓的向上提，最好有个角度，太快是不行的。</p>
<p>&nbsp;&nbsp;
当然那些虾也不是那么容易上钓的，有些虾只会试探一下，很快就逃掉。刚开始不会钓，我还骂这里的虾是经过训练的，都不会上钓，但看到别人也能钓，于是自己也耐心下来，慢慢去捉摸技术。</p>
<p>&nbsp;&nbsp;
钓完虾，就到旁边去就地正法，虾场提供炉具处理！把虾脱钓的时候被虾钳钳了几下（竟然敢钳我，现在你咬我，一会就是我咬你），原来是很痛的呢，还以为虾钳没什么力。</p>
<p>&nbsp;&nbsp;&nbsp;即钓即食还是第一次，新鲜就是不同，特别的好味，有空我会再去！</p>

]]></description><guid>http://www.i170.com/Article/2560</guid><trackback:ping>http://www.i170.com/Article/2560/trackback</trackback:ping><comments>http://www.i170.com/Article/2560#comment</comments><wfw:commentRss>http://www.i170.com/Article/2560/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/2338</link><title><![CDATA[有的人]]></title><author>lezwin</author><category>Life</category><pubDate>Tue, 13 Sep 2005 18:06:01  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp; 有的人真的不用对他（她）那么好，你对他（她）好是没用的，他（她）反转猪肚就是屎。</p>
<p>&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;这种人你不该去帮助他（她），任他（她）自生自灭好了，你对他（她）的好，在他（她）看起来是你应该的，是他（她）应得的，他（她）完全不会顾你感受！不知道大家有没有人遇到过这种人。</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;
有的人，你对他（她）友善，他（她）就会得寸进尺。你用友善的态度跟他（她）说话，他（她）却对你用吆喝的，跟叫狗没分别的，这种人不用理会他（她），这种人好听的称他（她）为“没礼貌”，不好听的称他（她）为“没文化”，难听点的就称他（她）为“贱人”。</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;
有的人，表面看起来很友善，但千万不要被他（她）的表面给欺骗了。真正善良的人，从眼睛里就能看到，只要细心，或用点时间就能体会到。而有的人，表面装得很友善，但心里却有他（她）的想法。想法有很多种，没有绝对的好和坏，只有相对好的，和相对不好的。</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; 也许我是有点小心眼，但老实说，没这个，在这个世界上是活不好的。想活好点，那就多留个心眼吧！</p>

]]></description><guid>http://www.i170.com/Article/2338</guid><trackback:ping>http://www.i170.com/Article/2338/trackback</trackback:ping><comments>http://www.i170.com/Article/2338#comment</comments><wfw:commentRss>http://www.i170.com/Article/2338/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/2134</link><title><![CDATA[我不要]]></title><author>lezwin</author><category>Life</category><pubDate>Sat, 10 Sep 2005 13:56:59  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp; 我不要妒忌别人，我听说过，妒忌别人就等于承认了别人比自己强！&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp;我觉得应该是妒忌别人就等于<font color=
"#FF6820">无言中</font>承认了别人比自己强！&nbsp;</p>
<p>&nbsp;</p>
<p>
&nbsp;&nbsp;&nbsp;我会羡慕别人，但我不要妒忌别人，妒忌会使人妒火中烧，会伤身体的，应该用平和的心去面对。我不要妒忌别人，因为我知道妒忌的感觉非常的难受，对人来说那是一种痛苦。</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;
我决定要戒掉妒忌之心，妒忌属于佛家所说的三界（“贪”、“嗔”、“痴”）中的“嗔”，没有人能跳过这三界，因为人就是人，而不是佛，是佛就不是人，有听说过上帝是人吗？</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;
我也不例外，虽然跳不出这个俗世，逃不过大“贪”、大“嗔”、大“痴”，但走出小“贪”、小“嗔”、小“痴”总可能做到吧，因此我说我不要妒忌别人，我觉是可以做到的。</p>

]]></description><guid>http://www.i170.com/Article/2134</guid><trackback:ping>http://www.i170.com/Article/2134/trackback</trackback:ping><comments>http://www.i170.com/Article/2134#comment</comments><wfw:commentRss>http://www.i170.com/Article/2134/commentRss</wfw:commentRss></item> <item><link>http://www.i170.com/Article/2133</link><title><![CDATA[练车记]]></title><author>lezwin</author><category>Life,car车</category><pubDate>Sat, 10 Sep 2005 13:28:54  +0800</pubDate><description><![CDATA[<p>&nbsp;&nbsp; 今天上午去练车，主要是练路，包括定点停车、斜坡起动、绕蛇形路、过波浪。</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp;刚练的时候很不熟悉，老是出错，教练老是在旁批评，搞得我一点信心都没有！</p>
<p>&nbsp;&nbsp;
车子起步的步聚是：踩离合进一档（我老是忘了先踩离合，当手放上档杆上才记起要踩住离合）--&gt;打左灯--&gt;鸣笛（记得看看倒后镜，看左边）--&gt;轻加油，慢放离合（采用半离合联动，如果起动时在斜坡上，油就得加大些，离合要慢放，放太快会导致起步不顺，甚至死火）--&gt;放手刹(放手刹前要看到车头有往下的动作，代表车子动力上来了，手刹要慢放，一放就放到底，一定要放尽），然后加油放开离合，只要动作协调，车子就能平滑起步了。</p>
<p>&nbsp;</p>
<p class="partingline">[separator]</p>
<p>
&nbsp;&nbsp;&nbsp;靠边停车的步骤：打右灯（看倒后镜，看右边）--&gt;轻刹车（最好采用拖刹）--&gt;踩离合（这个看车子速度慢下来了才做，踩太快会被骂的）--&gt;根据参照物刹停车子（参照物可能是标志牌，或者一棵书，当参照物在档风玻璃右边框的前一点时刹停车，记得脚要用力，把它踩到要烂就差不多了，我就因为没用力，整天被骂，因为刹车踩得不够深，如果车子在斜坡，拉完手刹车子会向后溜的）--&gt;拉手刹（记得要用力，别管它会断不会断，一定要用力）--&gt;空档（一定要空档啊，我几次忘记了空档，导致放离合时死火被骂了几顿）--&gt;放离合--&gt;放脚刹，这样就完成了靠停车。</p>
<p>&nbsp;</p>
<p>&nbsp;
在行车时，要根据路况作加减档，如果是直路比较多，就加油，加档，遇上坡的，看看车子够不够力而决定是否换档，换档要在上坡前完成，下坡的话千万别空档，空档肯定就FAIL了，出不要踩着离合，这跟空档是一样的。过弯时要根据速度决定该不该减档，该减到哪一档，遇到前方有靠边车（因为有其车在考试），要打灯越过，记得要看路标，因为有的路是小车的，有些路是大车的，不要走错，错了就没得回头，肯定foul
out 了。</p>
<p>&nbsp;</p>
<p>
&nbsp;&nbsp;车子过坡浪时记得用一档，采用半联动，油门也可以不踩了，以怠速过就可以的，过蛇形路车子一定要慢，太快容易手忙脚乱，要注意转弯一侧，以免后轮压出路面！总的来说路试出有它的难度，还是要小心应付啊，考得时候要记清步骤，虽然时间不会太长，七八分钟，但一个错失很有可能就FAIL。</p>
<p>&nbsp;</p>
<p>&nbsp; 明天去练一练侧方停车（就是在路边两车之间的一个车位停进去），还是要加紧努力啊！</p>
<p>&nbsp;</p>
<p>&nbsp; PS:上车记着要套安全套，一上车就要做！</p>

]]></description><guid>http://www.i170.com/Article/2133</guid><trackback:ping>http://www.i170.com/Article/2133/trackback</trackback:ping><comments>http://www.i170.com/Article/2133#comment</comments><wfw:commentRss>http://www.i170.com/Article/2133/commentRss</wfw:commentRss></item> </channel></rss> 