<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[振华博客]]></title> 
    <link>http://www.zhenhua.org/</link> 
    <description><![CDATA[振华博客,振华's blog]]></description> 
    <language>UTF-8</language> 
    <copyright><![CDATA[Copyright 2010, 振华博客]]></copyright> 
    <webMaster><![CDATA[zenhua@gmail.com (振华)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Tue, 07 Sep 2010 20:18:53 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[dreamweaver 正则 替换]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=711]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sun, 29 Aug 2010 16:14:04 +0800</pubDate> 
      <description><![CDATA[搜索：&quot;/\?edu=list&amp;lx=(\d)&quot;<br />替换：&quot;/list-$1.html&quot;<div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content">^<br /> 输入或行的起始部分。<br /> ^T 匹配“This good earth”中的“T”，但不匹配“Uncle Tom&#39;s Cabin”中的“T”。<br /> <br />$<br /> 输入或行的结尾部分。<br /> h$ 匹配“teach”中的“h”，但是不匹配“teacher”中的“h”<br /> <br />*<br /> 0 个或多个前置字符。<br /> um* 匹配“rum”中的“um”、“yummy”中的“umm”以及“huge”中的“u”<br /> <br />+<br /> 1 个或多个前置字符。<br /> um+ 匹配“rum”中的“um”和“yummy”中的“umm”，但在“huge”中没有任何匹配项<br /> <br />?<br /> 前置字符最多出现一次（即，指示前置字符是可选的）。<br /> st?on 匹配“Johnson”中的“son”和“Johnston”中的“ston”，但在“Appleton”和“tension”中没有任何匹配项<br /> <br />.<br /> 除换行符外的任何单字符。<br /> .an 匹配短语“bran muffins can be tasty”中的“ran”和“can”</div></div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=711]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[html转码]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=545]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sun, 04 May 2008 19:46:59 +0800</pubDate> 
      <description><![CDATA[<div class="code">&lt;%<br />Dim s<br />s = &quot;www.***.com&quot;<br />Response.Write &quot;http&#58;//&quot; &amp; UrlToAsc(s)<br />Function UrlToAsc(url)<br />&nbsp;Dim i<br />&nbsp;For i = 1 To Len(url)<br />&nbsp;UrlToAsc = UrlToAsc &amp; &quot;%&quot; &amp; Hex(Asc(Mid(url,i,1)))<br />&nbsp;Next<br />End Function<br />%&gt;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=545]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[JSTL（签库）介绍]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=533]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Mon, 31 Mar 2008 18:15:57 +0800</pubDate> 
      <description><![CDATA[前言<br /><br />从JSP　1.1规范开始，JSP就支持在JSP中使用自定义标签了，自定义标签的广泛使用造成了程序员重复定义，这样就促成了JSTL（JavaServer Pages Standard Tag Library）的诞生。<br />因为工作中需要用到JSTL，但网上却苦于找不到有关JSTL的中文资料，所以就有了这篇文章。<br /><br />JSTL简介<br /><br />JSTL是一个不断完善的开放源代码的JSP标签库，是由apache的jakarta小组来维护的。JSTL只能运行在支持JSP1.2和Servlet2.3规范的容器上，如tomcat 4.x。但是在即将推出的JSP 2.0中是作为标准支持的。<br />JSTL目前的最新版本为1.02，最终发布版为1.0。JSTL包含两个部分：标签库和EL（Expression Language表达式语言）语言。标签库目前支持四种标签：标签 URI 前缀 示例 <br />Core <a href="http://java.sun.com/jstl/core" title="http://java.sun.com/jstl/core" target="_blank">http://java.sun.com/jstl/core</a> c &lt;c:tagname ...&gt; <br />XML processing <a href="http://java.sun.com/jstl/xml" title="http://java.sun.com/jstl/xml" target="_blank">http://java.sun.com/jstl/xml</a> x &lt;x:tagname ...&gt; <br />]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=533]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[content-type大全]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=511]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 04 Jan 2008 16:22:30 +0800</pubDate> 
      <description><![CDATA[<div class="code">&#39;ez&#39; =&gt; &#39;application/andrew-inset&#39;<br />&#39;hqx&#39; =&gt; &#39;application/mac-binhex40&#39;<br />&#39;cpt&#39; =&gt; &#39;application/mac-compactpro&#39;<br />&#39;doc&#39; =&gt; &#39;application/msword&#39;<br />&#39;bin&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;dms&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;lha&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;lzh&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;exe&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;class&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;so&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;dll&#39; =&gt; &#39;application/octet-stream&#39;<br />&#39;oda&#39; =&gt; &#39;application/oda&#39;<br />&#39;pdf&#39; =&gt; &#39;application/pdf&#39;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=511]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[UTF-8 无BOM 页面不显示或空白]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=472]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 10 Aug 2007 11:43:36 +0800</pubDate> 
      <description><![CDATA[如果&lt;title&gt;后是中文，并且浏览器是IE6 SP1 ，就会出现这个问题<br /><br />解决方法：将meat 放在&lt;title&gt;前面即可<br /><br />详细：<a href="http://yskin.net/2006/08/ie-utf-8-bug.html" title="http://yskin.net/2006/08/ie-utf-8-bug.html" target="_blank">http://yskin.net/2006/08/ie-utf-8-bug.html</a>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=472]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[让iframe符合W3C标准]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=471]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 10 Aug 2007 11:13:14 +0800</pubDate> 
      <description><![CDATA[用JS来实现iframe 的标准化.<br /><br />    一、建立一个JS文件，代码如下：<br /><br />    <div class="code">function ifr(url,w,h){document.write(&#39;&lt;iframe id=&quot;ifr&quot; name=&quot;ifr&quot; width=&quot;&#39;+w+&#39;&quot; height=&quot;&#39;+h+&#39;&quot;   border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;&#39;+url+&#39;&quot;&gt;&lt;/iframe&gt;&#39;);}</div><br />    保存成&quot;ifr.JS&quot;<br /><br />    二、在网页中插入代码<br /><br />    <div class="code">&lt;script type=&quot;text/JavaScript&quot; src=&quot;ifr.JS&quot;&gt;&lt;/script&gt;</div><br />    三、在需要使用iframe的地方插入代码<br /><br />    <div class="code">&lt;script type=&quot;text/JavaScript&quot;&gt;ifr(&#39;http&#58;//www.51fy.cn/&#39;,&#39;778&#39;,&#39;120&#39;);&lt;/script&gt;</div><br />    函数ifr()使用说明：ifr(&#39;这里写地址&#39;,&#39;这里写宽度&#39;,&#39;这里写长度&#39;,)]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=471]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[HTML标签过滤]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=325]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sat, 20 May 2006 19:36:19 +0800</pubDate> 
      <description><![CDATA[<div class="code">javascript:|onclick|ondblclick|onmousedown|onmouseup|onmouseover|onmousemove|onmouseout<br />|onkeypress|onkeydown|onkeyup|onerror|onfocus|onload|onresize|onunload|onblur<br />|meta|input|form|select|textarea|option|object</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=325]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[通用网页播放器]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=299]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sat, 22 Apr 2006 12:55:48 +0800</pubDate> 
      <description><![CDATA[网页播放器的参数含义 Windows Media Player 网页播放器 参数含义<br /><br />(默认0为否，-1或1为是)<div class="code">&lt;object classid=&quot;clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95&quot; id=&quot;MediaPlayer1&quot; width=&quot;286&quot; height=&quot;225&quot;&gt;<br />&nbsp;&lt;param name=&quot;AudioStream&quot; value=&quot;-1&quot;&gt;<br />&nbsp;&lt;param name=&quot;AutoSize&quot; value=&quot;-1&quot;&gt;<br />&nbsp;&lt;!--是否自动调整播放大小--&gt;<br />&nbsp;&lt;param name=&quot;AutoStart&quot; value=&quot;-1&quot;&gt;<br />&nbsp;&lt;!--是否自动播放--&gt;<br />&nbsp;&lt;param name=&quot;AnimationAtStart&quot; value=&quot;-1&quot;&gt;<br />&nbsp;&lt;param name=&quot;AllowScan&quot; value=&quot;-1&quot;&gt;<br />&nbsp;&lt;param name=&quot;AllowChangeDisplaySize&quot; value=&quot;-1&quot;&gt;<br />&nbsp;&lt;param name=&quot;AutoRewind&quot; value=&quot;0&quot;&gt;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=299]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[textarea 限制字符]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=291]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Tue, 18 Apr 2006 19:29:27 +0800</pubDate> 
      <description><![CDATA[<div class="code">&lt;textarea name=&quot;A&quot; cols=&quot;45&quot; rows=&quot;2&quot; onKeyDown=&#39;if (this.value.length&gt;=20){event.returnValue=false}&#39;&gt;123&lt;/textarea&gt;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=291]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[CSS小技巧]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=168]]></link> 
      <category><![CDATA[HTML/CSS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Thu, 09 Sep 2004 00:45:21 +0800</pubDate> 
      <description><![CDATA[<div class="code">&lt;style&gt;<br />.db tr{<br />background-color:expression(&#39;#eeeeee,#eeeeee,#eeeeee,#cccccc,#cccccc,#cccccc&#39;.split(&#39;,&#39;)[rowIndex%6]);<br />}<br />&lt;/style&gt;<br />&lt;table width=&quot;500&quot; border=&quot;1&quot; class=&quot;db&quot;&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;  &lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;/table&gt;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=168]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
