<?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; Web 2.0</title>
	<atom:link href="http://blog.linym.net/archives/tag/web-20/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.linym.net</link>
	<description>我的學習心得、筆記</description>
	<lastBuildDate>Fri, 09 Dec 2011 12:33:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>[CSS]滑鼠移過表格列變色及附加連結效果</title>
		<link>http://blog.linym.net/archives/219</link>
		<comments>http://blog.linym.net/archives/219#comments</comments>
		<pubDate>Sat, 08 Mar 2008 05:06:43 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[網頁設計]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[標準]]></category>
		<category><![CDATA[網頁]]></category>

		<guid isPermaLink="false">http://blog.linym.net/archives/219</guid>
		<description><![CDATA[老實說這個標題不知道要怎麼下比較好理解。我想要滑鼠移過表格某一列時會變色，而且不只超連結的文字可以點，而是整列都有連結效果....囧...先直接看 Demo 吧！ 要達到這種效果，很多教學都是使用 JavaScript 裡的 onmouseover、onmouseout 及 onclick 事件來達成，不過現在有純 CSS 的解法，並且通用多數瀏覽器，這個技巧其實在很多國外網站看過，不過昨天向艾德請教之後才真正學起來^^ #tb td a { display: block; height: 35px; line-height: 35px; background: #FFF9E0; } #tb td a:hover { background: #E2D9B2; } 關鍵就是使用 display: block 將 a 顯示為區塊元素，然後依照需求設個高度或寬度給它即可，line-height 給予相同高度可以確保文字垂直置中，這樣比使用 JavaScript 方便多囉。]]></description>
			<content:encoded><![CDATA[<p>老實說這個標題不知道要怎麼下比較好理解。我想要滑鼠移過表格某一列時會變色，而且不只超連結的文字可以點，而是整列都有連結效果....囧...先直接看 <a href='http://blog.linym.net/wp-content/uploads/2008/03/css.html' title='css.html' target="_blank">Demo</a> 吧！<br />
要達到這種效果，很多教學都是使用 JavaScript 裡的 onmouseover、onmouseout 及 onclick 事件來達成，不過現在有純 CSS 的解法，並且通用多數瀏覽器，這個技巧其實在很多國外網站看過，不過昨天向艾德請教之後才真正學起來^^</p>
<pre title="code" class="css">

#tb td a {
    display: block;
    height: 35px;
    line-height: 35px;
    background: #FFF9E0;
}
#tb td a:hover {
    background: #E2D9B2;
}
</pre>
<p>關鍵就是使用 display: block 將 a 顯示為區塊元素，然後依照需求設個高度或寬度給它即可，line-height 給予相同高度可以確保文字垂直置中，這樣比使用 JavaScript 方便多囉。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/219/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>UrMap API 基本應用</title>
		<link>http://blog.linym.net/archives/164</link>
		<comments>http://blog.linym.net/archives/164#comments</comments>
		<pubDate>Thu, 02 Aug 2007 17:13:14 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[程式筆記]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[UrMap]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.linym.net/archives/164</guid>
		<description><![CDATA[UrMap 和 Google Map 都是很不錯的線上圖資系統，不過由於 UrMap 是由國人開發維護的，所以目前還是比較適合台灣人使用，尤其在查詢街道方面比 Google 精確。 而這兩套系統也都有釋出各自的 API，讓我們可以做許多的應用，這次幫同學的專題作一個簡單的 Demo，功能是假設有個程式會透過 GPS 接收器取得座標，然後將座標寫入檔案，Web Server 網頁則會定時讀取及更新地圖，標示出目標現在的位置，算是一個基本應用囉！ 首先不管是 UrMap API 還是 Google Map API，使用之前都要先申請授權碼(Key)，並且將它加入您的網頁裡面，所以只能在您登錄的網址顯示地圖。 接下來顯示地圖部份請參考 Demo 網頁原始碼，其他功能在 API 說明文件都寫得很詳盡。]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.urmap.com/" target="_blank">UrMap</a> 和 Google Map 都是很不錯的線上圖資系統，不過由於 UrMap 是由國人開發維護的，所以目前還是比較適合台灣人使用，尤其在查詢街道方面比 Google 精確。</p>
<p>而這兩套系統也都有釋出各自的 API，讓我們可以做許多的應用，這次幫同學的專題作一個簡單的 <a href="http://map.linym.net/" target="_blank">Demo</a>，功能是假設有個程式會透過 GPS 接收器取得座標，然後將座標寫入檔案，Web Server 網頁則會定時讀取及更新地圖，標示出目標現在的位置，算是一個基本應用囉！</p>
<p>首先不管是 <a href="http://www.urmap.com/SearchEngine/api/" target="_blank">UrMap API</a> 還是 <a href="http://www.google.com/apis/maps/" target="_blank">Google Map API</a>，使用之前都要先申請授權碼(Key)，並且將它加入您的網頁裡面，所以只能在您登錄的網址顯示地圖。</p>
<p>接下來顯示地圖部份請參考 <a href="http://map.linym.net/" target="_blank">Demo</a> 網頁原始碼，其他功能在 API 說明文件都寫得很詳盡。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/164/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Plugin</title>
		<link>http://blog.linym.net/archives/135</link>
		<comments>http://blog.linym.net/archives/135#comments</comments>
		<pubDate>Wed, 09 May 2007 17:44:50 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[程式筆記]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/135</guid>
		<description><![CDATA[jQuery 是個不錯的 JavaScript library，可以省略不少繁瑣的細節，且檔案大小又不大，最近都用它來開發網頁。同時也注意到了一些好用的 Plugin，主要是應用在 Ajax 上，有現成又好用的就不用再自己寫囉！ Validation 可用來做即時欄位驗證 History 無法回上一頁算是 Ajax 的一項缺點，用這個 plugin 可以做出回上頁的效果 jEditable 提供就地編輯(Edit In Place)的功能 ajaxFileUpload 利用隱藏 iframe 達到不換頁上傳檔案 Ajax File Manager 加強 tinymce 這個線上編輯器，可瀏覽檔案及上傳檔案 Interface 提供非常大量的動態效果，必試。 Form 使用 Ajax 送出表單資料]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquery.com/">jQuery</a> 是個不錯的 JavaScript library，可以省略不少繁瑣的細節，且檔案大小又不大，最近都用它來開發網頁。同時也注意到了一些好用的 Plugin，主要是應用在 Ajax 上，有現成又好用的就不用再自己寫囉！</p>
<ol>
<li><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">Validation</a><br />
可用來做即時欄位驗證</li>
<li><a href="http://www.mikage.to/jquery/jquery_history.html">History</a><br />
無法回上一頁算是 Ajax 的一項缺點，用這個 plugin 可以做出回上頁的效果</li>
<li><a href="http://www.appelsiini.net/~tuupola/javascript/jEditable/">jEditable</a><br />
提供就地編輯(Edit In Place)的功能</li>
<li><a href="http://www.phpletter.com/Demo/AjaxFileUpload-Demo/">ajaxFileUpload</a><br />
利用隱藏 iframe 達到不換頁上傳檔案</li>
<li><a href="http://www.phpletter.com/Demo/Ajax-File--Manager/">Ajax File Manager</a><br />
加強 tinymce 這個線上編輯器，可瀏覽檔案及上傳檔案</li>
<li><a href="http://interface.eyecon.ro/">Interface</a><br />
提供非常大量的動態效果，必試。</li>
<li><a href="http://www.malsup.com/jquery/form/">Form</a><br />
使用 Ajax 送出表單資料</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/135/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[CSS] 使多欄式版面高度等高</title>
		<link>http://blog.linym.net/archives/134</link>
		<comments>http://blog.linym.net/archives/134#comments</comments>
		<pubDate>Mon, 07 May 2007 07:21:25 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[網頁設計]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[排版]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/134</guid>
		<description><![CDATA[解決了上一篇的高度不能自動延伸的問題之後，馬上會遇到另一個問題。#container 和 #content 延伸了，旁邊兩個區塊卻仍然維持原本的高度，如果要指定背景就很麻煩了。 解決方法： 加入以下 CSS： #container { overflow: hidden; } #left, #right { padding-bottom: 1000px; margin-bottom: -1000px; } 利用 padding-bottom 設一個足夠容納所有內容的值 再用 margin-bottom 設相同的負值，將版面拉回來 這樣超過的版面就會被 overflow: hidden 隱藏，達到我們想要的效果。 參考文章]]></description>
			<content:encoded><![CDATA[<p>解決了<a href="http://blog.linym.net/archives/129">上一篇</a>的高度不能自動延伸的問題之後，馬上會遇到另一個問題。#container 和 #content 延伸了，旁邊兩個區塊卻仍然維持原本的高度，如果要指定背景就很麻煩了。</p>
<p><a href='http://blog.linym.net/wp-content/uploads/2007/05/01.png' title='01.png' target="_blank"><img src='http://blog.linym.net/wp-content/uploads/2007/05/01.png' alt='01.png' /></a></p>
<p><strong>解決方法：</strong><br />
加入以下 CSS：</p>
<pre title="code" class="css">

#container {
	overflow: hidden;
}
#left, #right {
	padding-bottom: 1000px;
	margin-bottom: -1000px;
}
</pre>
<p>利用 padding-bottom 設一個足夠容納所有內容的值<br />
再用 margin-bottom 設相同的負值，將版面拉回來<br />
這樣超過的版面就會被 overflow: hidden 隱藏，達到我們想要的效果。</p>
<p><a href="http://www.positioniseverything.net/articles/onetruelayout/equalheight">參考文章</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/134/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[CSS] 重直多欄式版面自動延伸高度</title>
		<link>http://blog.linym.net/archives/129</link>
		<comments>http://blog.linym.net/archives/129#comments</comments>
		<pubDate>Mon, 07 May 2007 07:06:05 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[網頁設計]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[排版]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/129</guid>
		<description><![CDATA[最近製作網頁開始試著用純 CSS 來排版了，習慣之後發現真的比表格排版更方便，不過當中也會遇到一些問題，其中一個就是這篇要講的。 現在有個三欄式版面，如圖： #container { margin:0 auto; width: 780px; height: 100px; background: #ffc; border: 1px solid #000; } #left { float: left; width: 260px; background: #9cf; } #content { float: left; width: 260px;; background: #fcf; } #right { float: right; width: 260px; background: #9cf; } 原本預期當任何區塊內容過多時，外層 container 要能夠自動延伸，包住裡面的子區塊，但實做之後會發現變成這樣： 解決方法： #container 裡不要指定高度，也就是維持預設的 height:auto; 同時加入 overflow: [...]]]></description>
			<content:encoded><![CDATA[<p>最近製作網頁開始試著用純 CSS 來排版了，習慣之後發現真的比表格排版更方便，不過當中也會遇到一些問題，其中一個就是這篇要講的。<br />
現在有個三欄式版面，如圖：</p>
<p><a href='http://blog.linym.net/wp-content/uploads/2007/05/01.png' title='01.png' target="_blank"><img src='http://blog.linym.net/wp-content/uploads/2007/05/01.png' alt='01.png' /></a></p>
<pre title="code" class="css">

#container {
	margin:0 auto;
	width: 780px;
	height: 100px;
	background: #ffc;
	border: 1px solid #000;
}
#left {
	float: left;
	width: 260px;
	background: #9cf;
}
#content {
	float: left;
	width: 260px;;
	background: #fcf;
}
#right {
	float: right;
	width: 260px;
	background: #9cf;
}
</pre>
<p>原本預期當任何區塊內容過多時，外層 container 要能夠自動延伸，包住裡面的子區塊，但實做之後會發現變成這樣：<br />
<a href='http://blog.linym.net/wp-content/uploads/2007/05/02.png' title='02.png' target="_blank"><img src='http://blog.linym.net/wp-content/uploads/2007/05/02.png' alt='02.png' /></a><br />
<strong>解決方法：</strong><br />
#container 裡不要指定高度，也就是維持預設的 height:auto; 同時加入 overflow: hidden; 即可。</p>
<pre title="code" class="css">

#container {
	margin:0 auto;
	width: 780px;
	background: #ffc;
	border: 1px solid #000;
    overflow: hidden;
}
</pre>
<p>記得不能指定高度，否則溢出的內容會被隱藏。</p>
<p>解決這個問題之後通常會遇到<a href="http://blog.linym.net/archives/134">下一個</a>問題...</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/129/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Lightbox 收集</title>
		<link>http://blog.linym.net/archives/106</link>
		<comments>http://blog.linym.net/archives/106#comments</comments>
		<pubDate>Sat, 10 Jun 2006 17:00:02 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[網頁設計]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/106</guid>
		<description><![CDATA[最近很容易可以看到這個效果，也就是當您點選網頁中的圖片或連結時，背景會立即變暗並且出現 Loading... 然後跳出一個美美的方框顯示圖片或網頁，這種效果就叫做 Lightbox，底下收集了一些許多人開發或修改的 Lightbox，通常都會有 Demo，看個人喜好選擇囉。 ‧Lightbox JS 典型也是最常見的一個，目前也出了 2.0 版，不過似乎只能顯示圖片而已。 ‧ThickBox 這個也是很常見，可以顯示圖片、網頁，並且可指定方框的大小，推薦。 ‧Greased Lightbox 提供裝在瀏覽器的擴充套件，平常看圖片時就會有 Lightbox 效果。 ．GreyBox 這個就厲害了，除了可以用於圖片和網頁外、連 flash、影片都可以顯示在 Lightbox 彈出的方框裡面。 ‧Lightbox Gone Wild! 也是可以顯示網頁、圖片，效果還不錯。 ‧Lightbox plus 增加圖片縮放功能，對於圖片尺寸大於螢幕解析度時可以點選放大的圖示，觀看圖片完整尺寸。(由 RB 補充) ‧Lightbox Jojo 在顯示圖片前可以先瀏覽一張圖片，圖片開啟後可以在圖片的上個圖層再放一張圖片。(由 RB 補充)]]></description>
			<content:encoded><![CDATA[<p>最近很容易可以看到這個效果，也就是當您點選網頁中的圖片或連結時，背景會立即變暗並且出現 Loading... 然後跳出一個美美的方框顯示圖片或網頁，這種效果就叫做 Lightbox，底下收集了一些許多人開發或修改的 Lightbox，通常都會有 Demo，看個人喜好選擇囉。</p>
<p>‧<a href="http://www.huddletogether.com/projects/lightbox/">Lightbox JS</a><br />
典型也是最常見的一個，目前也出了 2.0 版，不過似乎只能顯示圖片而已。</p>
<p>‧<a href="http://jquery.com/demo/thickbox/">ThickBox</a><br />
這個也是很常見，可以顯示圖片、網頁，並且可指定方框的大小，推薦。</p>
<p>‧<a href="http://shiftingpixel.com/lightbox/">Greased Lightbox</a><br />
提供裝在瀏覽器的擴充套件，平常看圖片時就會有 Lightbox 效果。</p>
<p>．<a href="http://amix.dk/projects/GreyBox">GreyBox</a><br />
這個就厲害了，除了可以用於圖片和網頁外、連 flash、影片都可以顯示在 Lightbox 彈出的方框裡面。</p>
<p>‧<a href="http://particletree.com/features/lightbox-gone-wild/">Lightbox Gone Wild!</a><br />
也是可以顯示網頁、圖片，效果還不錯。</p>
<p>‧<a href="http://serennz.cool.ne.jp/sb/sp/lightbox/index_ja.html">Lightbox plus</a><br />
增加圖片縮放功能，對於圖片尺寸大於螢幕解析度時可以點選放大的圖示，觀看圖片完整尺寸。(由 RB 補充)</p>
<p>‧<a href="http://serennz.cool.ne.jp/sb/sp/lightbox/index_jojo.html">Lightbox Jojo</a><br />
在顯示圖片前可以先瀏覽一張圖片，圖片開啟後可以在圖片的上個圖層再放一張圖片。(由 RB 補充)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/106/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>[Ajax] 實作 Gmail 的載入訊息</title>
		<link>http://blog.linym.net/archives/94</link>
		<comments>http://blog.linym.net/archives/94#comments</comments>
		<pubDate>Tue, 02 May 2006 10:48:42 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[程式筆記]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/94</guid>
		<description><![CDATA[進入 Gmail、Calendar 等 Google 的服務，時常會看到右上角有個紅底白字的「載入中...」，拿來當第一個 Ajax 的練習。 基本作法就是利用一個 DIV 區塊，預設為不顯示，等到呼叫 JavaScript 建立 XMLHttpRequest 時，將 DIV 區塊設為顯示，最後等伺服器後端傳回訊息時再隱藏區塊即可。這個範例是使用者輸入訊息，由 PHP 處理並顛倒字串印出。 Demo 網頁部分： &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62; &#60;head&#62; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=big5&#34; /&#62; &#60;title&#62;Ajax Test&#60;/title&#62; &#60;script type=&#34;text/javascript&#34;&#62; var ajax; function createHttpRequest() { if (window.ActiveXObject) { try { return new ActiveXObject(&#34;Msxml2.XMLHTTP&#34;); } catch [...]]]></description>
			<content:encoded><![CDATA[<p>進入 Gmail、Calendar 等 Google 的服務，時常會看到右上角有個紅底白字的「載入中...」，拿來當第一個 Ajax 的練習。<br />
基本作法就是利用一個 DIV 區塊，預設為不顯示，等到呼叫 JavaScript 建立 XMLHttpRequest 時，將 DIV 區塊設為顯示，最後等伺服器後端傳回訊息時再隱藏區塊即可。這個範例是使用者輸入訊息，由 PHP 處理並顛倒字串印出。<br />
<a href="http://blog.linym.net/demo/ajax/echo.htm" target="_blank">Demo</a><br />
網頁部分：</p>
<pre title="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;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=big5&quot; /&gt;
&lt;title&gt;Ajax Test&lt;/title&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var ajax;

function createHttpRequest() {
    if (window.ActiveXObject) {
        try {
            return new ActiveXObject(&quot;Msxml2.XMLHTTP&quot;);
        } catch (e) {
            try {
                return new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;);
            } catch (e2) {
                return null;
            }
        }
    } else if (window.XMLHttpRequest) {
        return new XMLHttpRequest();
    } else {
        return null;
    }
}

function ajaxSendRequest(url) {
	var msg = document.getElementById(&#039;msg&#039;).value;
    document.getElementById(&#039;loading&#039;).style.display = &quot;block&quot;;
    ajax = createHttpRequest();
    ajax.onreadystatechange = showResult;
    ajax.open(&quot;GET&quot;, url + &#039;?message=&#039; + msg);
    ajax.send(&quot;&quot;);
}

function showResult() {
    if (ajax.readyState == 4 &amp;&amp; ajax.status == 200) {
        document.getElementById(&#039;loading&#039;).style.display = &quot;none&quot;;
		document.getElementById(&#039;echo_msg&#039;).innerHTML = ajax.responseText;
    }
}
&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
#loading {
	position: absolute;
	width: 50px;
	height: 20px;
	line-height: 20px;
	top: 5px;
	right: 5px;
	font-size: 12px;
	background-color: #C44;
	color: #FFF;
	text-align: center;
}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;div id=&quot;loading&quot; style=&quot;display:none&quot;&gt;載入中...&lt;/div&gt;
請輸入英文訊息：&lt;input type=&quot;text&quot; id=&quot;msg&quot; /&gt;&lt;br /&gt;
&lt;div id=&quot;echo_msg&quot;&gt;&lt;/div&gt;
&lt;input type=&quot;submit&quot; id=&quot;Submit&quot; value=&quot;送出&quot; onclick=&quot;ajaxSendRequest(&#039;echo.php&#039;)&quot; /&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>PHP 部分：</p>
<pre title="code" class="php">

&lt;?php
$message = $_GET[&#039;message&#039;];
sleep(2); // 睡一下吧,不然&quot;載入中&quot;會太快消失
echo strrev($message);
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/94/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>跨平台網頁設計：使用 Web 標準技術</title>
		<link>http://blog.linym.net/archives/66</link>
		<comments>http://blog.linym.net/archives/66#comments</comments>
		<pubDate>Mon, 06 Feb 2006 15:12:09 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[好書好站]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[網頁設計]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/66</guid>
		<description><![CDATA[如果還不知道什麼是 WEB 標準、什麼是 W3C，或者你的網頁只能在 IE 正常瀏覽，換到其他瀏覽器就完全走樣，那就更應該看這本書。從不符合標準網頁所產生的問題開始，完整的帶領我們進入 WEB 標準的世界，並且以專題形式撰寫符合標準的網頁，是一本觀念很完整的書。]]></description>
			<content:encoded><![CDATA[<p>如果還不知道什麼是 WEB 標準、什麼是 W3C，或者你的網頁只能在 IE 正常瀏覽，換到其他瀏覽器就完全走樣，那就更應該看這本書。從不符合標準網頁所產生的問題開始，完整的帶領我們進入 WEB 標準的世界，並且以專題形式撰寫符合標準的網頁，是一本觀念很完整的書。<br />
<img src="http://blog.linym.net/wp-content/uploads/2006/04/1310602695.gif" id="image65" alt="1310602695.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/66/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 網頁設計師手札</title>
		<link>http://blog.linym.net/archives/64</link>
		<comments>http://blog.linym.net/archives/64#comments</comments>
		<pubDate>Mon, 06 Feb 2006 15:02:25 +0000</pubDate>
		<dc:creator>lym520</dc:creator>
				<category><![CDATA[好書好站]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[網頁設計]]></category>

		<guid isPermaLink="false">http://lym.fyman.idv.tw/blog/archives/64</guid>
		<description><![CDATA[想要寫出符合 Web Standards 又美觀的網頁，CSS 的運用一定是少不了的，所以幾個月前買了幾本 CSS 的書籍，這本書列出了 101 個將 CSS 運用在網頁上常會遇到的問題和技巧。尤其是後面的『CSS 定位與版型』，對設計 Web Standards 網頁有非常大的幫助。]]></description>
			<content:encoded><![CDATA[<p>想要寫出符合 Web Standards 又美觀的網頁，CSS 的運用一定是少不了的，所以幾個月前買了幾本 CSS 的書籍，這本書列出了 101 個將 CSS 運用在網頁上常會遇到的問題和技巧。尤其是後面的『CSS 定位與版型』，對設計 Web Standards 網頁有非常大的幫助。<br />
<img src="http://blog.linym.net/wp-content/uploads/2006/04/1261981769.jpg" id="image63" alt="1261981769.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.linym.net/archives/64/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

