<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet type="text/css" href="css/atom.css"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title type="html"><![CDATA[liqingyi's blog]]></title><subtitle type="html"><![CDATA[屡战屡败 屡败屡战 越战越勇]]></subtitle><id>http://www.imeimei.com/</id><link rel="alternate" type="text/html" href="http://www.imeimei.com/"/><link rel="self" type="application/atom+xml" href="http://www.imeimei.com/atom.xml"/><generator uri="http://www.rainbowsoft.org/" version="1.7 Laputa Build 70216">RainbowSoft Studio Z-Blog</generator><updated>2009-03-29T22:16:26+08:00</updated><entry><title type="html"><![CDATA[IE6,IE7,FF等浏览器不兼容原因及解决办法]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=11" label="HTML/CSS笔记"/><updated>2009-03-29T22:12:23+08:00</updated><published>2009-03-29T22:12:23+08:00</published><summary type="html"><![CDATA[本文转载,作者：阿里巴巴前端开发,发到这里只是方便以后查看，也给各位需要的朋友。浏览器的不兼容，大家肯定都是深恶痛绝的，往往我们只是去做修补，却忘了更重要的事情，那就是追溯根源，避免类似的不兼容再次出现。在下不才，归纳几点html编码要素，望能指点各位：1.文字本身的大小不兼容。同样是font-size:14px的宋体文 字，在不同浏览器下占的空间是不一样的，ie下实际占高16px，下留白3px，ff下实际占高17px，上留白1px，下留白3px，opera下就更 不一样了。解决方案：给文字设定...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/68.html"/><id>http://www.imeimei.com/post/68.html</id></entry><entry><title type="html"><![CDATA[HTML link的rel 属性]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=11" label="HTML/CSS笔记"/><updated>2009-03-28T22:04:13+08:00</updated><published>2009-03-28T22:04:13+08:00</published><summary type="html"><![CDATA[rel 属性  --  link标签中的rel属性,定义了文档与链接的关系.    此属性通常出现在a,link标签中    属性值                    Alternate -- 定义交替出现的链接                        Alternate 属性值  --  alternate是LinkTypes的一个值,网页设计者可以通过此值,设计交替出现的链接                            此属性值通常在,rel,rev属性中出现      ...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/67.html"/><id>http://www.imeimei.com/post/67.html</id></entry><entry><title type="html"><![CDATA[jstl中的varStatus的详解]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=3" label="J2EE笔记"/><updated>2009-03-26T22:38:56+08:00</updated><published>2009-03-26T22:38:56+08:00</published><summary type="html"><![CDATA[ 				和 var 属性一样，varStatus 用于创建限定了作用域的变量。不过，由 varStatus 属性命名的变量并不存储当前索引值或当前元素，而是赋予 javax.servlet.jsp.jstl.core.LoopTagStatus 类的实例。该类定义了一组特性，它们描述了迭代的当前状态，下面列出了这些特性: 		特性&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Getter&nbsp;&nbsp;&nbsp;&nbsp;&nbs...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/66.html"/><id>http://www.imeimei.com/post/66.html</id></entry><entry><title type="html"><![CDATA[使用DOM生成XML文件]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=3" label="J2EE笔记"/><updated>2009-03-24T23:31:26+08:00</updated><published>2009-03-24T23:31:26+08:00</published><summary type="html"><![CDATA[解析器通过在内存中建立和XML结构相对应的树状结构数据，使得应用程序可以方便地获得XML文件中的数据。JAXP也提供了使用内存中的树状结构数据建立一个XML文件的API，即使用解析器得到的Document对象建立一个新的XML文件。]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/65.html"/><id>http://www.imeimei.com/post/65.html</id></entry><entry><title type="html"><![CDATA[Dom4j的使用]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=3" label="J2EE笔记"/><updated>2009-03-24T17:13:00+08:00</updated><published>2009-03-24T17:13:00+08:00</published><summary type="html"><![CDATA[DOM4J是dom4j.org出品的一个开源XML解析包，它的网站中这样定义： Dom4j is an easy to use, open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with full support for DOM, SAX and JAXP.Dom4j是一个易用的、开源的库，用于XML，XPa...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/64.html"/><id>http://www.imeimei.com/post/64.html</id></entry><entry><title type="html"><![CDATA[Java中四种XML解析技术]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=3" label="J2EE笔记"/><updated>2009-03-24T16:41:39+08:00</updated><published>2009-03-24T16:41:39+08:00</published><summary type="html"><![CDATA[在平时工作中，难免会遇到把 XML 作为数据存储格式。面对目前种类繁多的解决方案，哪个最适合我们呢？在这篇文章中，我对这四种主流方案做一个不完全评测，仅仅针对遍历 XML 这块来测试，因为遍历 XML 是工作中使用最多的（至少我认为）。 预 备 测试环境： AMD 毒龙1.4G OC 1.5G、256M DDR333、Windows2000 Server SP4、Sun JDK 1.4.1+Eclipse 2.1+Resin 2.1.8，在 Debug 模式下测试。 XML 文件格式如下： ＜?...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/63.html"/><id>http://www.imeimei.com/post/63.html</id></entry><entry><title type="html"><![CDATA[JDBC分层事务管理机制]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=3" label="J2EE笔记"/><updated>2009-03-24T16:19:14+08:00</updated><published>2009-03-24T16:19:14+08:00</published><summary type="html"><![CDATA[虽然ORM框架在J2EE应用中大行其道，但是使用JDBC直接访问数据库方式因其简单和强大而在许多时候对开发者极具诱惑力。尤其在复杂的多 表关联集合操作的时候，ORM框架大多显得笨拙并且力不从心，而一条使用统计函数的sql语句却可以直接搞定。因此通常在我设计J2EE应用程序架构的时 候会在持久层框架中保留两种访问数据库的方式――Hibernate和JDBC。&nbsp;基于J2EE分层架构设 计思想，数据访问层应该专门处理数据访问，而业务逻辑则在业务逻辑层中处理。为了提高复用，数据访问层对象（DA...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/62.html"/><id>http://www.imeimei.com/post/62.html</id></entry><entry><title type="html"><![CDATA[javascript 正则表达式详解与实例]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=9" label="javascript笔记"/><updated>2009-03-22T10:43:52+08:00</updated><published>2009-03-22T10:43:52+08:00</published><summary type="html"><![CDATA[&nbsp;function isTrueName(s)&nbsp; &nbsp;{&nbsp; &nbsp;var patrn=/^[a-zA-Z]{1,30}$/;&nbsp; &nbsp;if (!patrn.exec(s)) return false&nbsp; &nbsp;return true&nbsp; &nbsp;}&nbsp; &nbsp;}}&nbsp; &nbsp;&nbsp; &nbsp;//校验密码：只能输入6-20个字母、数字、下划线&nbsp; &nbsp;func...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/61.html"/><id>http://www.imeimei.com/post/61.html</id></entry><entry><title type="html"><![CDATA[javascript正则表达式详解]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=9" label="javascript笔记"/><updated>2009-03-22T10:10:29+08:00</updated><published>2009-03-22T10:10:29+08:00</published><summary type="html"><![CDATA[Normal07.8 磅02falsefalsefalseMicrosoftInternetExplorer4/* Style Definitions */table.MsoNormalTable{mso-style-name:普通表格;mso-tstyle-rowband-size:0;mso-tstyle-colband-size:0;mso-style-noshow:yes;mso-style-parent:"";mso-padding-alt:0cm 5.4pt 0cm 5.4pt;ms...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/60.html"/><id>http://www.imeimei.com/post/60.html</id></entry><entry><title type="html"><![CDATA[javascript添加行 firefox与IE 的兼容问题总结]]></title><author><name>lqy2425</name><email>a@b.com</email></author><category term="" scheme="http://www.imeimei.com/catalog.asp?cate=9" label="javascript笔记"/><updated>2009-03-18T16:59:04+08:00</updated><published>2009-03-18T16:59:04+08:00</published><summary type="html"><![CDATA[table.insertRow()在IE下没问题 但在firefox下就得改为table.insertRow(-1)同样其相应的insertCell()也要改为insertCell(-1)var newTh = table.insertRow(-1);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb...]]></summary><link rel="alternate" type="text/html" href="http://www.imeimei.com/post/59.html"/><id>http://www.imeimei.com/post/59.html</id></entry></feed>
