<?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; 前端</title>
	<atom:link href="http://www.zhangjingwei.com/archives/tag/%e5%89%8d%e7%ab%af/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zhangjingwei.com</link>
	<description>中隐留司官</description>
	<lastBuildDate>Wed, 08 Sep 2010 17:36:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>jQuery 1.3 正式版发布</title>
		<link>http://www.zhangjingwei.com/archives/jquery130/</link>
		<comments>http://www.zhangjingwei.com/archives/jquery130/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 04:48:07 +0000</pubDate>
		<dc:creator>张经纬</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[die]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[前端]]></category>

		<guid isPermaLink="false">http://www.zhangjingwei.com/?p=499</guid>
		<description><![CDATA[英文文档：http://docs.jquery.com/Release:jQuery_1.3 jQuery 1.3  经过几个Beta测试以后，今天正式发布了。 较之1.2.6,它做要有这样一些更新。 一、更为强大的选择器。 jQuery 1.3 的选择器较之以前的更为强健，更具备可扩展性，并且完全独立（虽然可扩展性会牺牲一些性能） 根据jQuery官方的说明文档，这本版本较之上一版本又提高了49%的性能。 二、Live 事件 新版的jQ可以无缝将某一个事件绑定到现在后以后的所有元素上。这个问题其实之前的重复绑定问题，你是否还记得当你append()后的元素无法使用，迫不得已在bind一下或者是在代码上写onclick的尴尬？呵呵，live()出马，一个顶N啊！ 比如以前是这样写的。 $&#40;document&#41;.ready&#40;function&#40;&#41;&#123; $&#40;&#34;p&#34;&#41;.bind&#40;&#34;click&#34;, addF&#41;; function addF&#40;&#41;&#123; $&#40;this&#41;.append&#40;&#34;&#60;p&#62;hello&#60;/p&#62;&#34;&#41;; &#125; &#125;&#41;; 那么现在我们就可以这样写了  $&#40;document&#41;.ready&#40;function&#40;&#41;&#123; $&#40;&#34;p&#34;&#41;.live&#40;&#34;click&#34;, function&#40;&#41;&#123; $&#40;this&#41;.append&#40;&#34;&#60;p&#62;hello&#60;/p&#62;&#34;&#41;; &#125;&#41;; &#125;&#41;; 如果你想看更多的关于live和die请看下面的两个链接： live:http://docs.jquery.com/Events/live die:http://docs.jquery.com/Events/die 当然jQ肯定也不会忘记提一下我们的性能又提高啦（哈哈） 三、Event对象 主要是根据W3c规范，做了一个标准的对象。当然，因此有了一些变化。 四、注入效率的提升 插入的效率得到了提高，看来以后我们append等事情能更快了。 五、重写了Offset() 据官方说跨浏览器更好了，速度更快了。 六、取消了浏览器监听 改成jQuery.support，具体看它下面跟的“Change”。。 对了，JQ现在用YUI压缩了，呵呵，还是YUI好。 下载链接：http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.min.js&#38;downloadBtn=%3CSPAN%3EDownload%3C%2FSPAN%3E 英文文档：http://docs.jquery.com/Release:jQuery_1.3 最后，我发现走走停停老大也发布了公告，并且在制作中文文档中，期待！ http://shawphy.com/2009/01/release-jquery-1-3.html 加入书签:]]></description>
			<content:encoded><![CDATA[<p>英文文档：<a href="http://docs.jquery.com/Release:jQuery_1.3" target="_blank">http://docs.jquery.com/Release:jQuery_1.3</a></p>
<p>jQuery 1.3  经过几个Beta测试以后，今天正式发布了。</p>
<p>较之1.2.6,它做要有这样一些更新。</p>
<p><strong>一、更为强大的选择器。</strong></p>
<p>jQuery 1.3 的选择器较之以前的更为强健，更具备可扩展性，并且完全独立（虽然可扩展性会牺牲一些性能）</p>
<p>根据jQuery官方的说明文档，这本版本较之上一版本又提高了49%的性能。</p>
<p><img src="http://farm4.static.flickr.com/3399/3196296260_c7a0be70be.jpg" alt="性能提高图释" /></p>
<p><strong>二、Live 事件</strong><br />
新版的jQ可以无缝将某一个事件绑定到现在后以后的所有元素上。这个问题其实之前的重复绑定问题，你是否还记得当你append()后的元素无法使用，迫不得已在bind一下或者是在代码上写onclick的尴尬？呵呵，live()出马，一个顶N啊！</p>
<p>比如以前是这样写的。</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;p&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">bind</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;click&quot;</span><span style="color: #339933;">,</span> addF<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">function</span> addF<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&lt;p&gt;hello&lt;/p&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>那么现在我们就可以这样写了 </p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;p&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">live</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;click&quot;</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
      $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&lt;p&gt;hello&lt;/p&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>如果你想看更多的关于live和die请看下面的两个链接：<br />
live:<a href="http://docs.jquery.com/Events/live" target="_blank">http://docs.jquery.com/Events/live</a><br />
die:<a href="http://docs.jquery.com/Events/die" target="_blank">http://docs.jquery.com/Events/die</a></p>
<p>当然jQ肯定也不会忘记提一下我们的性能又提高啦（哈哈）</p>
<p><img src="http://farm4.static.flickr.com/3491/3195452055_a411849f82.jpg" alt="" /></p>
<p><strong>三、Event对象</strong><br />
主要是根据W3c规范，做了一个标准的对象。当然，因此有了一些变化。</p>
<p><strong>四、注入效率的提升</strong><br />
插入的效率得到了提高，看来以后我们append等事情能更快了。<br />
<img src="http://farm4.static.flickr.com/3422/3196296910_6d385bd9df.jpg" alt="插入函数的效率得到了提高图释" /></p>
<p><strong>五、重写了Offset()</strong><br />
据官方说跨浏览器更好了，速度更快了。<br />
<img src="http://farm4.static.flickr.com/3082/3195452579_e90f85f79c.jpg" alt="offset()图释" /></p>
<p><strong>六、取消了浏览器监听</strong><br />
改成jQuery.support，具体看它下面跟的“Change”。。</p>
<p>对了，JQ现在用<a href="http://www.zhangjingwei.com/archives/yui-compressor/" target="_blank">YUI压缩</a>了，呵呵，还是YUI好。</p>
<p>下载链接：<a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.min.js&amp;downloadBtn=%3CSPAN%3EDownload%3C%2FSPAN%3E" target="_blank">http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.min.js&amp;downloadBtn=%3CSPAN%3EDownload%3C%2FSPAN%3E</a></p>
<p>英文文档：<a href="http://docs.jquery.com/Release:jQuery_1.3" target="_blank">http://docs.jquery.com/Release:jQuery_1.3</a></p>
<p>最后，我发现走走停停老大也发布了公告，并且在制作中文文档中，期待！<br />
<a href="http://shawphy.com/2009/01/release-jquery-1-3.html">http://shawphy.com/2009/01/release-jquery-1-3.html</a></p>



加入书签:


	<a rel="nofollow" class="thickbox" href="http://shuqian.qq.com/post?jumpback=1&title=jQuery%201.3%20%E6%AD%A3%E5%BC%8F%E7%89%88%E5%8F%91%E5%B8%83&uri=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fjquery130%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/qq.png" title="QQ书签" alt="QQ书签" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fjquery130%2F&title=jQuery%201.3%20%E6%AD%A3%E5%BC%8F%E7%89%88%E5%8F%91%E5%B8%83?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/douban.png" title="豆瓣" alt="豆瓣" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fjquery130%2F&title=jQuery%201.3%20%E6%AD%A3%E5%BC%8F%E7%89%88%E5%8F%91%E5%B8%83&n=1?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/douban9.png" title="豆瓣九点" alt="豆瓣九点" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fjquery130%2F&amp;title=jQuery%201.3%20%E6%AD%A3%E5%BC%8F%E7%89%88%E5%8F%91%E5%B8%83?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.zhangjingwei.com/feed/?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=jQuery%201.3%20%E6%AD%A3%E5%BC%8F%E7%89%88%E5%8F%91%E5%B8%83&amp;body=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fjquery130%2F" title="email"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.zhangjingwei.com/archives/jquery130/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>网页制作必备利器之四（Beyond Compare 3）</title>
		<link>http://www.zhangjingwei.com/archives/beyond-compare/</link>
		<comments>http://www.zhangjingwei.com/archives/beyond-compare/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 03:46:17 +0000</pubDate>
		<dc:creator>张经纬</dc:creator>
				<category><![CDATA[开发工具]]></category>
		<category><![CDATA[Beyond Compare]]></category>
		<category><![CDATA[前端]]></category>
		<category><![CDATA[小工具]]></category>
		<category><![CDATA[网页制作]]></category>

		<guid isPermaLink="false">http://www.zhangjingwei.com/?p=454</guid>
		<description><![CDATA[虽然SVN这个大杀器提供了对比操作，但是太麻烦，真的，试想如果有一天你的机器上没有SVN或者咱们压根就不用SVN的时候，要想对比文件，我应该怎么办？ 值得庆幸的是，Beyond Compare 这个出色的文件对比工具提提供了我们所需要的一切。 让我们先来看看BC的界面。 虽然是英文的，但是左侧的菜单还是很好理解的吧。 它们是“文件夹对比”、“文件对比”、“数据库对比”“文件HEX对比”、“MP3对比”、“图片对比”、“版本对比” 右侧是一些基本参数，大家自己看一下即可。 好了，我们这里以对比文件夹来做一个示范。 首先，在右侧选择需要对比的两个文件夹。点击Open. 可以看到，右侧的文件都是红色的。别急，我们现在全选所有文件。点击鼠标右键选择对比文件选项。 我们选择二进制对比。 点击Start！看，文件不是对比出来了吗？ 最后，老规矩，给下载地址，带注册码的。 国外下载：http://rapidshare.com/files/179567934/Beyond.Compare-v3.0.3.build.8845.rar.html 国内下载：http://share.138.io/get/0cba4c36e4a805f98f1d353ff.html 加入书签:]]></description>
			<content:encoded><![CDATA[<p>虽然SVN这个大杀器提供了对比操作，但是太麻烦，真的，试想如果有一天你的机器上没有SVN或者咱们压根就不用SVN的时候，要想对比文件，我应该怎么办？ <img src='http://www.zhangjingwei.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>值得庆幸的是，Beyond Compare 这个出色的文件对比工具提提供了我们所需要的一切。</p>
<p>让我们先来看看BC的界面。</p>
<p><img class="alignnone size-full wp-image-455" title="2009-01-04_113107" src="http://www.zhangjingwei.com/wp-content/uploads/2009/01/2009-01-04_113107.gif" alt="2009-01-04_113107" width="709" height="439" /></p>
<p>虽然是英文的，但是左侧的菜单还是很好理解的吧。 <img src='http://www.zhangjingwei.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>它们是“文件夹对比”、“文件对比”、“数据库对比”“文件HEX对比”、“MP3对比”、“图片对比”、“版本对比”</p>
<p>右侧是一些基本参数，大家自己看一下即可。</p>
<p>好了，我们这里以对比文件夹来做一个示范。</p>
<p>首先，在右侧选择需要对比的两个文件夹。点击Open.</p>
<p><img class="alignnone size-full wp-image-457" title="2009-01-04_1136261" src="http://www.zhangjingwei.com/wp-content/uploads/2009/01/2009-01-04_1136261.gif" alt="2009-01-04_1136261" width="653" height="227" /></p>
<p>可以看到，右侧的文件都是红色的。别急，我们现在全选所有文件。点击鼠标右键选择对比文件选项。</p>
<p><img class="alignnone size-full wp-image-458" title="2009-01-04_113946" src="http://www.zhangjingwei.com/wp-content/uploads/2009/01/2009-01-04_113946.gif" alt="2009-01-04_113946" width="304" height="187" /></p>
<p>我们选择二进制对比。</p>
<p><img class="alignnone size-full wp-image-459" title="2009-01-04_114035" src="http://www.zhangjingwei.com/wp-content/uploads/2009/01/2009-01-04_114035.gif" alt="2009-01-04_114035" width="398" height="361" /></p>
<p>点击Start！看，文件不是对比出来了吗？ <img src='http://www.zhangjingwei.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><img class="alignnone size-full wp-image-460" title="2009-01-04_114219" src="http://www.zhangjingwei.com/wp-content/uploads/2009/01/2009-01-04_114219.gif" alt="2009-01-04_114219" width="366" height="272" /></p>
<p>最后，老规矩，给下载地址，带注册码的。</p>
<p>国外下载：<a href="http://rapidshare.com/files/179567934/Beyond.Compare-v3.0.3.build.8845.rar.html" target="_blank">http://rapidshare.com/files/179567934/Beyond.Compare-v3.0.3.build.8845.rar.html</a></p>
<p>国内下载：<span id="upload_format"><a href="http://share.138.io/get/0cba4c36e4a805f98f1d353ff.html" target="_blank">http://share.138.io/get/0cba4c36e4a805f98f1d353ff.html</a></span></p>



加入书签:


	<a rel="nofollow" class="thickbox" href="http://shuqian.qq.com/post?jumpback=1&title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E5%9B%9B%EF%BC%88Beyond%20Compare%203%EF%BC%89%20&uri=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fbeyond-compare%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/qq.png" title="QQ书签" alt="QQ书签" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fbeyond-compare%2F&title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E5%9B%9B%EF%BC%88Beyond%20Compare%203%EF%BC%89%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/douban.png" title="豆瓣" alt="豆瓣" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fbeyond-compare%2F&title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E5%9B%9B%EF%BC%88Beyond%20Compare%203%EF%BC%89%20&n=1?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/douban9.png" title="豆瓣九点" alt="豆瓣九点" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fbeyond-compare%2F&amp;title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E5%9B%9B%EF%BC%88Beyond%20Compare%203%EF%BC%89%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.zhangjingwei.com/feed/?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E5%9B%9B%EF%BC%88Beyond%20Compare%203%EF%BC%89%20&amp;body=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fbeyond-compare%2F" title="email"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.zhangjingwei.com/archives/beyond-compare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网页制作必备利器之三（HTTP Analyzer）</title>
		<link>http://www.zhangjingwei.com/archives/http-analyzer/</link>
		<comments>http://www.zhangjingwei.com/archives/http-analyzer/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 11:19:08 +0000</pubDate>
		<dc:creator>张经纬</dc:creator>
				<category><![CDATA[开发工具]]></category>
		<category><![CDATA[HTTP Analyzer]]></category>
		<category><![CDATA[前端]]></category>

		<guid isPermaLink="false">http://www.zhangjingwei.com/?p=448</guid>
		<description><![CDATA[HTTP Analyzer 是一个实时的web调试代理，如果你对Fiddler不陌生的话，HTTP Analyzer 就是和Fiddler具备一样功能的调试代理。

推荐这个软件而不推荐Fiddler的原因是。

1、HTTP Analyzer支持SSL。
2、HTTP Analyzer的过滤器比Fiddler要很多。（至少我是这样觉得）。
3、有注册码。  :D

<img src="http://www.ieinspector.com/httpanalyzer/images/hs_main_l.gif" alt="2009-01-03_191435" title="2009-01-03_191435" width="796" height="599" class="Stand-alone Edition" />]]></description>
			<content:encoded><![CDATA[<p>HTTP Analyzer 是一个实时的web调试代理，如果你对Fiddler不陌生的话，HTTP Analyzer 就是和Fiddler具备一样功能的调试代理。</p>
<p>推荐这个软件而不推荐Fiddler的原因是。</p>
<p>1、HTTP Analyzer支持SSL。<br />
2、HTTP Analyzer的过滤器比Fiddler要很多。（至少我是这样觉得）。<br />
3、有注册码。  <img src='http://www.zhangjingwei.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><img src="http://www.ieinspector.com/httpanalyzer/images/hs_main_l.gif" alt="2009-01-03_191435" title="2009-01-03_191435" width="796" height="599" class="Stand-alone Edition" /></p>
<p>下载地址：<a href="http://www.ieinspector.com/httpanalyzer/download.html" target="_blank">http://www.ieinspector.com/httpanalyzer/download.html</a></p>
<p>注册码：<br />
icedblog<br />
88321-6C190D3CBE3303AE</p>
<p>BTW:<br />
另外送上一个“IE Add-on Edition ”的注册码吧<br />
icedblog<br />
88658-A8F3AE18E536C0C2</p>



加入书签:


	<a rel="nofollow" class="thickbox" href="http://shuqian.qq.com/post?jumpback=1&title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E4%B8%89%EF%BC%88HTTP%20Analyzer%EF%BC%89%20&uri=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fhttp-analyzer%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/qq.png" title="QQ书签" alt="QQ书签" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fhttp-analyzer%2F&title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E4%B8%89%EF%BC%88HTTP%20Analyzer%EF%BC%89%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/douban.png" title="豆瓣" alt="豆瓣" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.douban.com/recommend/?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fhttp-analyzer%2F&title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E4%B8%89%EF%BC%88HTTP%20Analyzer%EF%BC%89%20&n=1?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/douban9.png" title="豆瓣九点" alt="豆瓣九点" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fhttp-analyzer%2F&amp;title=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E4%B8%89%EF%BC%88HTTP%20Analyzer%EF%BC%89%20?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow" class="thickbox" href="http://www.zhangjingwei.com/feed/?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=%E7%BD%91%E9%A1%B5%E5%88%B6%E4%BD%9C%E5%BF%85%E5%A4%87%E5%88%A9%E5%99%A8%E4%B9%8B%E4%B8%89%EF%BC%88HTTP%20Analyzer%EF%BC%89%20&amp;body=http%3A%2F%2Fwww.zhangjingwei.com%2Farchives%2Fhttp-analyzer%2F" title="email"><img src="http://www.zhangjingwei.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.zhangjingwei.com/archives/http-analyzer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
