<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[Break N .net技术/生活BLOG]]></title> 
    <link>http://blog.breakN.net/</link> 
    <description><![CDATA[专注于.net 专注于原创]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2010, Break N .net技术/生活BLOG]]></copyright> 
    <webMaster><![CDATA[jingyionline@gmail.com (景裔)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Tue, 07 Sep 2010 20:55:13 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[2009 年度最佳 jQuery 插件]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=495]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Mon, 14 Dec 2009 09:14:01 +0800</pubDate> 
      <description><![CDATA[有段时间没上BLOG了，这段时间事也多。<br />以下内容<a href="http://www.oschina.net/news/6112/best_plugins_of_jquery?from=20091213" title="http://www.oschina.net/news/6112/best_plugins_of_jquery?from=20091213" target="_blank">开源中国</a>上看到的，记录下，省的自个忘了<br />　　jQuery 是个宝库，而 jQuery 的插件体系是个取之不竭的宝库，众多开发者在 jQuery 框架下，设计了数不清的插件，jQuery 的特长是网页效果，因此，它的插件库也多与 UI 有关。本文是 <a href="http://www.webdesignledger.com/" title="http://www.webdesignledger.com/" target="_blank">webdesignledger.com</a> 网站推选的2009年度最佳 jQuery 插件<br /><br />　　拉洋片 <br /><br />　　在一个固定区域，循环显示几段内容，这种方式很像旧时的拉洋片，2009年，这种 Web 效果大行其道，jQuery 有大量与此有关的插件，以下插件无疑是最佳的。<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=495]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[JS的正则表达式[收藏版]]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=490]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Sun, 13 Sep 2009 14:38:04 +0800</pubDate> 
      <description><![CDATA[<pre name="code" class="c#">//验证中文的函数
function isChn(str){
 var reg = /^[\u4e00-\u9fa5]+$/;
 if(!reg.test(str)){
 return false;
 }
 return true;
}

//校验是否全由数字组成
function isDigit(s) 
{ 
var patrn=/^[0-9]{1,20}$/; 
if (!patrn.exec(s)) return false 
return true 
} 
//校验登录名：只能输入5-20个以字母开头、可带数字、“_”、“.”的字串
function isRegisterUserName(s)   
{   
var patrn=/^[a-zA-Z]{1}([a-zA-Z0-9]|[._]){4,19}$/;   </pre>]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=490]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[DW新建文件提示JavaScript错误出错及FlashObject.htm: 有不正确的设置信息的解决方案]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=486]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Mon, 17 Aug 2009 22:50:24 +0800</pubDate> 
      <description><![CDATA[　　今天使用Adobe Dreamweaver CS4做文件新建，保存等操作的时候提示出错了<div class="quote"><div class="quote-title">引用 <u></u></div><div class="quote-content">在onLoad运行tempURL_afterSave.htm时，发生了以下JavaScript错误:<br /><br />在文件“tempURL_afterSave”中:<br />afterSave is not defined</div></div><div class="quote"><div class="quote-title">引用 <u></u></div><div class="quote-content">以下翻译器没有被装载，由于错误:<br /> FlashObject.htm: 有不正确的设置信息。<br />XSLT.htm: 有不正确的设置信息。</div></div>　　只要关闭DW，然后删除C:\Documents and Settings\<span style="color:Red">您当前的用户名</span>\Application Data\Adobe\Dreamweaver CS4\zh_CN\Configuration下的“<span style="color:Red">WinFileCache-D2124403.dat</span>]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=486]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[如何高效的去掉点击链接时周围的虚线框]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=479]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Tue, 19 May 2009 14:09:35 +0800</pubDate> 
      <description><![CDATA[　　个人在使用中感觉以下两种方式处理比较高效，特别是在一个页面有上面我链接以上的。<br />　　最新在<a href="http://www.blueidea.com/tech/web/2009/6727.asp" title="http://www.blueidea.com/tech/web/2009/6727.asp" target="_blank">Blueidea</a>上看到的<pre name="code" class="html">&lt;style type=&quot;text/css&quot;&gt;  
 .wrap{position:relative;}  
 .btns{zoom:1;}  
 .btns *{outline:0;zoom:1;background:#f2f2f2;}  
 .btns button::-moz-focus-inner{border-color:transparent!important;}  
&lt;/style&gt;  
&lt;div class=&quot;wrap&quot;&gt;
 &lt;div class=&quot;btns&quot;&gt;  </pre>]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=479]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[必须知道的10个不常用HTML标签]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=475]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Tue, 07 Apr 2009 13:00:49 +0800</pubDate> 
      <description><![CDATA[　　在Blueidea看到的，原文地址：<a href="http://www.blueidea.com/tech/web/2009/6557.asp" title="http://www.blueidea.com/tech/web/2009/6557.asp" target="_blank">http://www.blueidea.com/tech/web/2009/6557.asp</a><br />　　不错的文章，这１０个也的确是不怎么了解但还是很有用的标签。<br />　　以下是原文，做记录用<div class="quote"><div class="quote-title">引用 <u></u></div><div class="quote-content">网页开发人员常常希望能够了解并掌握多种语言，结果是，学习一门语言的所有内容是棘手的，但是却很容易发现你并没有完全利用那些比较特殊却很有用的标签。<br /><br />不幸的是我们到现在还没有涉足的那些比较不知名的HTML标记所有潜力。但它永远不会太晚重新进入领域，并开始编写代码来发掘这些未开发的标签的能量。<br /><br />这里是10个未被充分利用或被误解的HTML标签。或许它们不太广为人知，但是在特定情况下他们却非常有用。<br /><br />1. &lt;cite&gt;<br /><br />貌似每个人都比较熟悉&lt;blockquote&gt; 标签，但是你可知道&lt;blockquote&gt;的小弟弟&lt;cite&gt;？&lt;cite&gt; </div></div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=475]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[全屏DIV的一些技巧]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=474]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Tue, 17 Mar 2009 13:45:18 +0800</pubDate> 
      <description><![CDATA[　　有些时候，网页第于行带有“&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" title="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;”类似申明的时候Table或是div的height样式设置成100%没效果，有两种比较好的解决办法，当然把那行申明去了不算：<br />　　html、body的宽高设置成100%，然后再把目标div样式设置成100%就行了<pre name="code" class="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http:www.w3.org/1999/xhtml&quot;&gt;</pre>]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=474]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[条件CSS的使用]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=472]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Thu, 12 Mar 2009 13:42:37 +0800</pubDate> 
      <description><![CDATA[　　原文来自<a href="http://www.blueidea.com/tech/web/2009/6503.asp" title="http://www.blueidea.com/tech/web/2009/6503.asp" target="_blank">蓝色理想</a>，看着不错这里自己记录下<br />　　任意 CSS 声明或者块都可以添加条件声明前缀，这些前缀有3种基本类型：<br />　　　[if {!} browser]<br />　　　[if {!} browser version]<br />　　　[if {!} condition browser version]<br /><br />　　　! - 声明的否定 (例 NOT) - 可选<br /><br />　　　browser - 声明针对的浏览器<br />　　　‘IE’ - Internet Explorer<br />　　　‘Gecko’ - Gecko 核心的浏览器 (Firefox, Camino 等)<br />　　　‘Webkit’ - Webkit 核心的浏览器 (Safari, Shiira 等)<br />　　　‘SafMob’ - ]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=472]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[比较高效的表格行背景变色及选定高亮JS]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=447]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Fri, 22 Aug 2008 11:14:40 +0800</pubDate> 
      <description><![CDATA[　　<span style="color:Red">本文原创，转载请注明出处</span><br />　　一个项目要用，又不想用jquery之类的东东。先去网上搜索了下，找到了不少在CSS中执行JS的表格行变色方式，不过这类方式在表格行多的时候相当卡，就自己按着最原始的方式倒腾了个出来献给广大的JS小白们（本人也算上JS小白之一 <img src="http://blog.breakN.net/styles/default/images/smilies/icon_lol.gif" border="0" alt="[lol]" /> ），<span style="color:Green">在IE7和firefox3中测试正常</span>。<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=447]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[英文内容不能换行问题]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=382]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Wed, 10 Oct 2007 08:04:00 +0800</pubDate> 
      <description><![CDATA[　　昨天帮朋友加一个外贸网站的程序，产品展示列表使用了div来做，产品标题部分宽度设置了100，在看页面的时候发现标题老是超出，不会自动换行，很是头大，也试了CSS强制换行，可是效果不好，会出现一个单词被分成两部分的情况。<br />　　折腾了一个小时终于反应过来，发现它那个标题里的空格表示为“&amp;nbsp;”，导致了不会自动换行，以及强制换行会把单词分开的部分，把““&amp;nbsp;”再替换成&quot; &quot;就ＯＫ了，教训啊教训，浪费了不少时间。<br /><br />==============<br /><br />Feedsky验证:dc0e9d8e]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=382]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Javascript获取修改地址参数]]></title> 
      <link><![CDATA[http://blog.breakN.net/article.asp?id=381]]></link> 
      <category><![CDATA[网站构建]]></category> 
      <author><![CDATA[景裔 <null@null.com>]]></author> 
      <pubDate>Mon, 08 Oct 2007 16:05:36 +0800</pubDate> 
      <description><![CDATA[　　SerupMap Ajax Map取相关地址参数要用到的，收藏<br /><br />　　<b>修改地址后的参数：</b><pre name="code" class="html">&lt;script&gt;
function getNewUrl(oldurl,paramname,pvalue){
 var reg = new RegExp(&quot;(\\?|&amp;)&quot;+ paramname +&quot;=([^&amp;]*)(&amp;|$)&quot;,&quot;gi&quot;);
 var t=oldurl.match(reg)[0];
 var retxt=t.substring(0,t.indexOf(&quot;=&quot;)+1)+pvalue;
 if(t.charAt(t.length-1)==&#39;&amp;&#39;) retxt+=&quot;&amp;&quot;;
 return oldurl.replace(reg,retxt);
 }
 alert(getNewUrl(&quot;http:servername/v</pre>]]></description>
      <wfw:commentRss><![CDATA[http://blog.breakN.net/feed.asp?q=comment&id=381]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
