<?xml version='1.0' encoding='utf-8'?>
<rss version='2.0'>
<channel>
<title> <![CDATA[网页设计技术博客 | 末日创意]]> </title>
<description><![CDATA[北京山东苏州广州网页设计，网页设计，ASP，JAVAScript，网页制作，技术文章，技术博客,美工，创意，程序设计，免费BLOG程序下载，Myblog]]></description>
<link>http://blog.kzesd.com/</link>
<language>zh-cn</language>
<docs><![CDATA[北京山东苏州广州网页设计，网页设计，网页设计，ASP，JAVAScript，网页制作，技术文章，技术博客,美工，创意，程序设计,免费BLOG程序下载，Myblog]]></docs>
<generator><![CDATA[© 版权所有 2006-2008 末日创意Rss Generator By lastidea.net ]]></generator>
<item>
<title> JQuery&#20013;JSON&#20351;&#29992;&#25195;&#30450;(&#36328;&#22495;) </title>
<link> http://blog.lastidea.net/blogshow.asp?id=310 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=310 </guid>
<author> &#36213;&#20381;&#29123; </author>
<pubDate>2009-10-16 00:00</pubDate>
<category>所属分类:PHP</category>
<description> <![CDATA[
本贴仅适合<A href="http://jquery.com/" target=_blank><FONT color=#0000ff>JQuery</FONT></A>初学者，属于没有技术含量的水贴，高手们可以忽略。<BR><BR>先编写json.php：<BR><BR><FONT face=宋体>&lt;?php<BR>echo json_encode(array('foo' =&gt; 'bar'));<BR>?&gt;</FONT><BR><BR>再编写json.htm：<BR><BR><FONT face=宋体>&lt;script src="</FONT>http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js<FONT face=宋体>"&gt;&lt;/script&gt;<BR>&lt;script&gt;<BR>$.getJSON('/json.php', function(data){<BR>alert(data.foo);<BR>});<BR>&lt;/script&gt;<BR></FONT><BR>把两个文件放到根目录下，运行http://localhost/json.htm，就能看到效果了。<BR><BR>上面的例子没有什么难度，下面尝试一下在跨域情况下的效果，<BR><BR>编写C:\WINDOWS\system32\drivers\etc\hosts文件，加入如下映射：<BR><BR>127.0.0.1 www.foobar.com<BR><BR>修改json.htm的内容：<STRONG><BR><BR></STRONG><FONT face=宋体>&lt;script src="</FONT>http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js<FONT face=宋体>"&gt;&lt;/script&gt;<BR>&lt;script&gt;<BR>$.getJSON('http://</FONT>www.foobar.com<FONT face=宋体>/json.php', function(data){<BR>alert(data.foo);<BR>});<BR>&lt;/script&gt;</FONT><BR><BR>此时，重启浏览器后再浏览http://localhost/json.htm，程序不会运行，会出现Permission denied错误。<BR><BR>这是因为由于同源策略的限制，XmlHttpRequest只允许请求当前源（域名、协议、端口）的资源。<BR><BR>如果想规避跨域问题，可以通过使用html的script标记来进行跨域请求，并在响应中返回要执行的script代码。此技术的一种实际应用方式被称为JSONP，<A href="http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/" target=_blank><FONT color=#0000ff>Remote JSON - JSONP</FONT></A>一文对其原理做了介绍。<BR><BR>先修改json.htm的内容：<BR><BR><FONT face=宋体>&lt;script src="</FONT>http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js<FONT face=宋体>"&gt;&lt;/script&gt;<BR>&lt;script&gt;<BR>$.getJSON('http://</FONT>www.foobar.com<FONT face=宋体>/json.php<FONT color=#ff0000>?callback=?</FONT>', function(data){<BR>alert(data.foo);<BR>});<BR>&lt;/script&gt;</FONT><BR><BR>再修改json.php的内容：<BR><BR><FONT face=宋体>&lt;?php<BR>echo <FONT color=#ff0000>$_GET['callback'], '(',</FONT> json_encode(array('foo' =&gt; 'bar'))<FONT color=#ff0000>, ')'</FONT>;<BR>?&gt;</FONT><BR><BR>此时，如果再浏览json.htm，就会发现即便是跨域，程序也能正常运行。<BR><BR>有了callback=?后，JQuery就会知道你要进行一次JSONP请求，它会自动生成一个回调函数的名字，然后替换callback=?中的问号。callback并不是必须的命名规则，而只是客户端和服务端之间的一种约定，比如说在<A href="http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=foobar" target=_blank><FONT color=#0000ff>FlickrAPI</FONT></A>里，使用的就不是callback，而是jsoncallback。不管使用什么命名，最后不过是生成一种function_name(json_data)的调用形式而已。
]]> </description>
</item>
<item>
<title> &#25968;&#32452;&#36171;&#20540;&#32473;&#25968;&#32452; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=309 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=309 </guid>
<author> &#36213;&#20381;&#29123; </author>
<pubDate>2009-7-17 00:00</pubDate>
<category>所属分类:JavaScript</category>
<description> <![CDATA[
<P>&lt;script type="text/javascript"&gt;<BR>&nbsp;var a=new Array(1,2,3);<BR>&nbsp;var b=a;<BR>&nbsp;alert(b[0].toString());<BR>&lt;/script&gt;</P>
<P>注意:数组赋值赋的是数组的地址.并不是数组的是值...<BR>运行一下下面的代码段就明白了</P>
<P>&lt;script type="text/javascript"&gt;<BR>&nbsp;var a=new Array(1,2,3);<BR>&nbsp;var b=a;<BR>&nbsp;a[0]=0;<BR>&nbsp;alert(b[0].toString());<BR>&lt;/script&gt;</P>
]]> </description>
</item>
<item>
<title> &#35299;&#20915;FCKeditor+JQuery JAJXFORM&#20004;&#27425;&#25552;&#20132;&#30340;&#38382;&#39064; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=307 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=307 </guid>
<author> 赵依燃 </author>
<pubDate>2009-2-18 00:00</pubDate>
<category>所属分类:JavaScript</category>
<description> <![CDATA[
<P>非IE浏览器,在JQuery的ajaxForm提交时要点击两次才能提交上数据,搞了两天终于解决这个问题.其实也没有本质上改变,只是修补了一下:在提交前对FCKeditor控件重新赋值...仍然不知道问题研究出在哪里,但是程序是能用了.</P>
<P>
<TABLE style="BORDER-RIGHT: #cccccc 1px dotted; TABLE-LAYOUT: fixed; BORDER-TOP: #cccccc 1px dotted; BORDER-LEFT: #cccccc 1px dotted; BORDER-BOTTOM: #cccccc 1px dotted" cellSpacing=0 cellPadding=6 width="95%" align=center border=0>
<TBODY>
<TR>
<TD style="WORD-WRAP: break-word" bgColor=#f3f3f3>
<P>&lt;script type='text/javascript' src="FCKeditor/FCKeditor.js"&gt;&lt;/script&gt;<BR>&lt;script type='text/javascript' src='jquery.js' &gt;&lt;/script&gt;<BR>&lt;script type='text/javascript' src='jquery.form.js'&gt;&lt;/script&gt; <BR>&lt;script type='text/javascript'&gt;</P>
<P>//生成FCKeditor<BR>&nbsp;function CreateFCKeditor(sID)<BR>&nbsp;{<BR>&nbsp;&nbsp;var oFCKeditor = new FCKeditor(sID) ;<BR>&nbsp;&nbsp;oFCKeditor.BasePath = "FCKeditor/" ;<BR>&nbsp;&nbsp;oFCKeditor.Config['ToolbarLocation'] = 'Out:parent(xToolbar)';<BR>&nbsp;&nbsp;oFCKeditor.Width = '100%' ;<BR>&nbsp;&nbsp;oFCKeditor.Height = '400px' ;<BR>&nbsp;&nbsp;oFCKeditor.ReplaceTextarea() ;<BR>&nbsp;}</P>
<P>//AJAX回调函数<BR>&nbsp;function rend(r){<BR>&nbsp;&nbsp;alert(r);<BR>&nbsp;}</P>
<P>&nbsp;$(document).ready(function(){<FONT color=#c72868><BR>&nbsp;&nbsp;//ajax提交方式,非IE要两次提交才能把FCKeditor里的内容提交到bbb.asp,不用ajax方式能正常提交!<BR>&nbsp;&nbsp;//在提交之前对控件重新赋值<BR>&nbsp;&nbsp;$("#btnSave").click(function(){<BR>&nbsp;&nbsp;&nbsp;$("btn").val(FCKeditorAPI.GetInstance("btn").GetXHTML(true));<BR>&nbsp;&nbsp;});</FONT></P>
<P>//jQuery ajaxForm提交<BR>&nbsp;&nbsp;$('#formEdit').ajaxForm({success:rend});<BR>&nbsp;&nbsp;<BR>&nbsp;});</P>
<P>&lt;/script&gt;</P>
<P><BR>&lt;div id=xToolbar&gt;&lt;/div&gt;<BR>&lt;form action=bbb.asp name=formEdit id=formEdit&nbsp; method="post"&gt;<BR>&nbsp;&lt;textarea name=c id=c style="display:none"&gt;&lt;/textarea&gt;<BR>&nbsp;&lt;script type="text/javascript"&gt;<BR>&nbsp;&nbsp;//生成编辑器<BR>&nbsp;&nbsp;CreateFCKeditor("c")<BR>&nbsp;&lt;/script&gt;<BR>&nbsp;&lt;input type=submit id=btn&gt;<BR>&lt;/form&gt;</P></TD></TR></TBODY></TABLE></P>
]]> </description>
</item>
<item>
<title> FCKeditor &#35843;&#29992;&#26041;&#27861; asp&#29256;&#65292;js&#29256; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=306 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=306 </guid>
<author> 赵依燃 </author>
<pubDate>2009-2-12 00:00</pubDate>
<category>所属分类:ASP</category>
<description> <![CDATA[
<P><STRONG>FCKeditor asp调用方法1</STRONG><BR>&lt;!-- #INCLUDE file="FCKeditor/FCKeditor.asp" --&gt;<BR>&lt;form action="sampleposteddata.asp" method="post" target="_blank"&gt;<BR>&lt;%<BR>&nbsp;Dim oFCKeditor<BR>&nbsp;Set oFCKeditor = New FCKeditor<BR>&nbsp;oFCKeditor.BasePath = "/FCKeditor/"<BR>&nbsp;oFCKeditor.ToolbarSet = "Default"<BR>&nbsp;oFCKeditor.Width = "100%"<BR>&nbsp;oFCKeditor.Height = "400"<BR>&nbsp;oFCKeditor.Value = "1234123123"<BR>&nbsp;oFCKeditor.Create "Content"<BR>%&gt;</P>
<P><BR>&nbsp; &lt;input type="submit" value="Submit" /&gt;<BR>&lt;/form&gt;</P>
<P><STRONG>FCKeditor asp调用方法2</STRONG></P>
<P>&lt;!--#include file="FCKEditor/fckeditor.asp" --&gt;</P>
<P>&lt;%<BR>'多个控件使用一个编辑器<BR>Set oFCKeditor = New FCKeditor<BR>oFCKeditor.BasePath = "/fckeditor/"<BR>oFCKeditor.ToolbarSet = "yongfa365"<BR>oFCKeditor.Width = "100%"<BR>oFCKeditor.Height = "100"<BR>oFCKeditor.Config("ToolbarLocation") ="Out:xToolbar"<BR>oFCKeditor.Value = ""<BR>oFCKeditor.Create "txtContentHeader"<BR>%&gt;</P>
<P>&lt;div id="xToolbar"&gt;&lt;/div&gt;<BR>&lt;%<BR>Set oFCKeditor = New FCKeditor<BR>oFCKeditor.BasePath = "/fckeditor/"<BR>oFCKeditor.ToolbarSet = "yongfa365"<BR>oFCKeditor.Width = "100%"<BR>oFCKeditor.Height = "400"<BR>oFCKeditor.Config("ToolbarLocation") ="Out:xToolbar"<BR>oFCKeditor.Value = ""<BR>oFCKeditor.Create "txtContent"<BR>%&gt;</P>
<P>-------------------------------------------------------------------------------------------------------------<BR><STRONG>FCKeditor js调用方法1</STRONG><BR>&lt;script src="FCKeditor/FCKeditor.js"&gt;&lt;/script&gt;<BR>&lt;script type="text/javascript"&gt;<BR>&nbsp;var oFCKeditor = new FCKeditor( 'Content' ) ;<BR>&nbsp;oFCKeditor.BasePath = 'FCKeditor/' ;<BR>&nbsp;oFCKeditor.ToolbarSet = 'Basic' ;<BR>&nbsp;oFCKeditor.Width = '100%' ;<BR>&nbsp;oFCKeditor.Height = '400' ;<BR>&nbsp;oFCKeditor.Value = '' ;<BR>&nbsp;oFCKeditor.Create() ;<BR>&lt;/script&gt;</P>
<P><BR><STRONG>FCKeditor js调用方法2</STRONG><BR>&lt;script src="FCKeditor/FCKeditor.js"&gt;&lt;/script&gt;<BR>&lt;script type="text/javascript"&gt;<BR>&lt;!--<BR>function showFCK(){<BR>&nbsp;var oFCKeditor = new FCKeditor('Content') ;<BR>&nbsp;oFCKeditor.BasePath = 'FCKeditor/' ;<BR>&nbsp;oFCKeditor.ToolbarSet = 'Basic' ;<BR>&nbsp;oFCKeditor.Width = '100%' ;<BR>&nbsp;oFCKeditor.Height = '200' ;<BR>&nbsp;oFCKeditor.Value = '' ;<BR>&nbsp;oFCKeditor.ReplaceTextarea() ;<BR>&nbsp;document.getElementById("btnShow").disabled = 'true';<BR>&nbsp;document.getElementById("btnShow").style.display = 'none';</P>
<P>}<BR>//--&gt;<BR>&lt;/script&gt;<BR>&lt;textarea name="Content"&gt;&lt;/textarea&gt;<BR>&lt;input id=btnShow style="display:inline" type=button onClick="showFCK()"&gt;</P>
]]> </description>
</item>
<item>
<title> FCKeditor 2.6.3 &#29256;&#26412;asp&#20013;&#30340;&#20351;&#29992; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=305 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=305 </guid>
<author> 赵依燃 </author>
<pubDate>2009-2-12 00:00</pubDate>
<category>所属分类:ASP</category>
<description> <![CDATA[
<TABLE style="TABLE-LAYOUT: fixed">
<TBODY>
<TR>
<TD>
<DIV class=cnt id=blog_text>
<P>FCKeditor 2.6.3 版本asp中的使用<BR><A href="http://www.fckeditor.net/"><FONT color=#810081>http://www.fckeditor.net</FONT></A></P>
<P><BR>fckconfig.js 文件中第276行和277行 改为asp</P>
<P>var _FileBrowserLanguage = 'asp' ; // asp | aspx | cfm | lasso | perl | php | py<BR>var _QuickUploadLanguage = 'asp' ; // asp | aspx | cfm | lasso | perl | php | py</P>
<P>上传中文 文件名 乱码<BR>FCKeditor\editor\filemanager\connectors\asp\io.asp <BR>文件中 第 224行 Sub SendUploadResults<BR>在Response.Clear之后加入<BR>Response.CodePage=65001 <BR>Response.Charset="UTF-8"</P>
<P>上传文件链接中多一个/<BR>在文件FCKeditor\editor\filemanager\connectors\asp\commands.asp中<BR>FileUpload 函数中<BR>192、193行改为<BR>sFileUrl = CombinePaths( GetResourceTypePath( resourceType, sCommand ), sFileName )<BR>'sFileUrl = CombinePaths( sFileUrl, sFileName )<BR>(其中改了一行，注释掉了一行)</P></DIV></TD></TR></TBODY></TABLE>
]]> </description>
</item>
<item>
<title> 80&#21518;&#36208;&#21521;&#25104;&#29087;&#30340;&#20960;&#20010;&#34920;&#29616; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=304 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=304 </guid>
<author> 赵依燃 </author>
<pubDate>2009-2-9 00:00</pubDate>
<category>所属分类:心情网文</category>
<description> <![CDATA[
<P>　　　　1、你不怎么爱发短信了，有什么事还是通个话比较好，并且喜欢长话短说。 <BR>　　　　2、你不喜欢花太多时间沉浸在感情的思考中，你觉得那种煽情的小情结已经不属于你了。 <BR>　　　　3、你有时候挺喜欢独处的，但是你不再孤影自怜，你喜欢上上网，听听歌，并且自得其乐，偶尔玩玩游戏，但是不再玩升级类的了，小游戏还有竞技类的玩的多。 <BR>　　　　4、你以前只爱看娱乐节目，并且准时等待，现在你爱看法治频道，科学探索你也经常关注。偶尔看到电视里的美女，总是问周围的人，这女的谁啊？新出来的么？周围的人会说连他都不认识啊。 <BR>　　　　5、你会抽出空来去电影院看电影，你小时候觉得那是个很浪漫的谈情场所，你现在冲着你熟悉的导演你喜欢的演员去。 <BR>　　　　6、你加了很多QQ群，从小学到工作的，有兴趣一致的或者星座一样的，但是你不怎么爱在群里发言，也只是偶尔打开来看看他们说了些什么。 <BR>　　　　7、你有一个博客，有时候会写些东西，里面也会有一些照片。你不会经常去到处走访别人的博客，因为你博客里的东西是写给自己看的。 <BR>　　　　8、你偶尔哼着的歌，还是好几年前你熟悉的旋律，歌词也许都记地不太清楚了，但是依然接着哼。 <BR>　　　　9、你的床头会至少有一本书，也许是你并为读完的书，但是一定是一本好书，你偶尔会翻来看，直到你读完。 <BR>　　　　10、你开始发现不吃早餐的严重性，不管怎么样你也会买个早点填个肚子。 <BR>　　　　11、你永远给不出你年龄的确切答案，22还是23，22岁半吧。 <BR>　　　　12、你有个帐本，你不会像以前一样不知道钱花哪里去了。 <BR>　　　　13、你开始花一个周末的时间在超市购物，并且买好你一周乃至半个月的生活用品。冰箱空了你就会记得塞满。 <BR>　　　　14、你小时候喜欢把东西到处乱扔，你现在看见哪里不整洁了你会自然而然收拾一下，乱七八糟的你不舒服。 <BR>　　　　15、你打电话给父母的时候开始叮嘱他们要注意身体健康，你觉得有时候你反倒像大人，他们像你的孩子。 <BR>　　　　16、你不浪费水不浪费电。 <BR>　　　　17、你衣服可能不会很多，但是一定都会体面。 <BR>　　　　18、你偶尔和朋友同事们聚会，你会喝点酒，但是你不会轻易让自己醉。 <BR>　　　　19、你看到很小的小朋友的时候会觉得童年真美好。 <BR>　　　　20、你有一个经常逛的网站</P>
<P>没有账本(老婆有)和只陪老婆逛超市之外,说的还是比较准的嘛,总结的很好,呵呵</P>
<P>原贴:<A href="http://topic.csdn.net/u/20090208/11/DE85A1AD-5C6F-4E73-9D84-D9B8BB26B4FF.html"><FONT color=#810081>http://topic.csdn.net/u/20090208/11/DE85A1AD-5C6F-4E73-9D84-D9B8BB26B4FF.html</FONT></A></P>
]]> </description>
</item>
<item>
<title> &#29233;&#30340;&#35808;&#37322;&#65306;&#23567;&#23567;&#30340;&#29233; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=303 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=303 </guid>
<author> 赵依燃 </author>
<pubDate>2009-2-4 00:00</pubDate>
<category>所属分类:心情网文</category>
<description> <![CDATA[
<SPAN style="COLOR: purple">无论多么不值得一提的小事，都能留在心底一辈子，这就叫窝心。最窝心的爱不是轰轰烈烈，而是点点滴滴小小的爱触动内心最柔软的角落。</SPAN><BR><BR><A href="http://www.u148.net/article_2128.html" target=_blank><FONT color=#0000ff>爱是什么</FONT></A>，这是一个千古话题。上世纪60年代，美国的Kim Casali随手画了些小图片送给未婚夫，作为爱的诠释。没想到，这一画就是十年，一直画到他们结婚。1997年Kim辞世，她的儿子Stefano Casali继续了妈妈的事业——为世界诠释爱。如今，Love is…系列漫画已经在全球有数百万忠实读者，大家都被这两个小人之间小小的爱深深感动。他们的爱，很小很窝心。<BR><BR>下面的这些图片来自一个特地为Love is…系列漫画的爱好者整理的网站，这个网站在原画的基础上做了修正、精简、美化（<A href="http://www.loveisfan.com/" target=_blank><FONT color=#0000ff>LoveIsFan</FONT></A>）。昨晚，我一页一页的翻看了这个小站里的全部图片，看完全部已然泪流满面。今天，我从中挑选出来一些很有感觉的图片，献给正在经历爱情的人们，希望这些爱的诠释，能让你们珍惜自己那些小小的、容易忽视的爱，让你被自己所经历的平凡的爱感动，让你发现，原来你的爱，那么窝心。<BR><BR>
<DIV align=center><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/7.jpg" border=0></A><BR>感觉彼此的心跳。<BR>feeling each others heart beat<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/2.jpg" border=0></A><BR>在家和朋友狂欢一晚后一起收拾房间。<BR>Arranging the house together after a night spent with friends<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/3.jpg" border=0></A><BR>刚刚擦干净的地板被他踩脏却并不生气。<BR>being able to keep cool when he makes the floors dirty just after you have cleaned them<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/4.jpg" border=0></A><BR>她生宝宝不在家的时候自己给自己做饭吃。<BR>cooking for yourself when she is away to give birth to the baby<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/5.jpg" border=0></A><BR>自己减肥的时候却给他做美味的甜点。<BR>cooking him a dessert when you are in diet<BR><BR>爱，就是….<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/6.jpg" border=0></A><BR>讨论什么是对的而不是争辩谁是对的。<BR>deciding on what is correct instead of finding out who is right<BR><BR>爱，就是…..<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/8.jpg" border=0></A><BR>确实很生气但依然原谅。<BR>forgiving even if you are really angry<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/9.jpg" border=0></A><BR>洗发水进她眼睛的时候轻轻递给她毛巾。<BR>giving her the towel when her eyes are filled with shampoo<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/10.jpg" border=0></A><BR>她累了不想做饭的时候自己乖乖出去吃比萨。<BR>going out for a pizza when she is too tired to cook<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/11.jpg" border=0></A><BR>他晚归的时候帮他热饭菜。<BR>keeping his meal hot when he comes home late<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/12.jpg" border=0></A><BR>明知有去无回还是“借”钱给她。<BR>lending her the money that you know will never return<BR><BR>爱，就是….<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/13.jpg" border=0></A><BR>容忍她煲电话粥。<BR>letting her gossip on the phone<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/14.jpg" border=0></A><BR>允许他在三明治里放洋葱<BR>letting him put onion in his sandwich<BR><BR>爱，就是….<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/15.jpg" border=0></A><BR>故意输掉一场比赛。<BR>losing the game, but making a great match<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/16.jpg" border=0></A><BR>他忘记约会的时候并不起疑心。<BR>not being suspicious when he forgets an appointment<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/17.jpg" border=0></A><BR>母亲节的时候不让她做家务。<BR>not leaving her do the housework on Mother’s Day<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/18.jpg" border=0></A><BR>看感人电影的时候递给她纸巾。<BR>passing her tissue papers if the film is too moving<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/19.jpg" border=0></A><BR>在生日蛋糕上插上少于他/她岁数的蜡烛。<BR>pulling candles on the birthday cake counting less than his / her age<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/20.jpg" border=0></A><BR>为她拂去眼前的头发。<BR>pulling her hair away from her eyes<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/21.jpg" border=0></A><BR>容忍他偶尔的邋遢。<BR>putting up with his occasional stubble<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/22.jpg" border=0></A><BR>宝宝出生前把烟戒掉。<BR>quitting smoking before the baby is born<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/23.jpg" border=0></A><BR>到处都能看到他的脸庞。<BR>seeing his face everywhere<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/24.jpg" border=0></A><BR>红灯停车前偷偷的亲亲。<BR><BR><BR>stealing a kiss when you stop before at the red light<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/25.jpg" border=0></A><BR>带她去结婚前你生活过的地方。<BR>taking her to the place you lived before marrying<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/26.jpg" border=0></A><BR>告诉她她做得菜真的很好吃，即使事实并不如此。<BR>telling that her new dish is really delicious, even if it’s not so<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/27.jpg" border=0></A><BR>下雨天心里暖洋洋的大太阳。<BR>the sun shining bright in a rainy day<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/28.jpg" border=0></A><BR>当他爱你胜过爱他自己的车。<BR>the time he prefers you over his car.<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/29.jpg" border=0></A><BR>蜜月的时候两个人一起生病。<BR>the time when both of you get ill on your honeymoon<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/30.jpg" border=0></A><BR>她在婚纱店前放慢脚步。<BR>the time when she slows down in front of the shops selling wedding dress<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/31.jpg" border=0></A><BR>一杯饮料，两根吸管。<BR>two pipettes in a drink<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/32.jpg" border=0></A><BR>用早餐的香味叫醒赖床的他。<BR>waking him up with the smell of a wonderful breakfast on Sunday morning<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/33.jpg" border=0></A><BR>洗他脏兮兮的运动服。<BR>washing his sports togs<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/34.jpg" border=0></A><BR>两个人一起看电视。<BR>watching TV together<BR><BR>爱，就是…<BR>Love is...<BR><A class=nob href="http://www.u148.net/"><IMG alt=www.u148.net src="http://www.u148.net/attachments/image/month_0902/LoveIs/35.jpg" border=0></A><BR>无法让他/她离开自己的视线。<BR>when you just can’t get him out of your sight<BR></DIV><BR><BR>还是那句话，每个人都有自己的故事，看这些图片的时候都会加上自己的故事，因此都会有不同的感触。<BR>爱就是如此，在生活的每一个角落乖乖的躺着，你每次走过，都没有发现小小的它。但是，它就是那样静静的，静静的…守护着你…<BR><BR>
<DIV align=center><STRONG>A Little Love</STRONG><BR>
<OBJECT id=audioplayer68833 type=application/x-shockwave-flash height=24 width=290 data=http://www.u148.net/images/audio.swf></OBJECT><BR><BR><A href="http://www.u148.net/attachments/audio/month_0902/alittlelove.mp3" target=_blank><FONT color=#0000ff>下载</FONT></A><BR><BR>
<DIV class=UBBPanel>
<DIV class=UBBTitle><FONT color=#0000ff><IMG style="MARGIN: 0px 2px -3px 0px" src="http://www.u148.net/images/html.gif"></FONT>文章相关内容</DIV>
<DIV class=UBBContent><TEXTAREA id=temp70329 style="WIDTH: 390px; HEIGHT: 262px" rows=16 cols=25>　　A Little Love by 冯曦妤
　　曲:陈光荣 词:Anders Lee/冯曦妤

　　Greatness as you
　　smallest as me
　　You show me
　　what is deep as sea

　　A little love,
　　little kiss
　　A litlle hug,
　　little gift
　　all of little something
　　these are our memories

　　You make me cry
　　make me smile
　　make me feel that love is true
　　You always stand by my side
　　I don't want to say goodbye

　　You make me cry
　　make me smile
　　make me feel
　　the joy of love
　　oh kissing you
　　Thank you for all the love
　　you always give to me
　　oh I love you

　　Yes I do,

　　I always do

　　Make me cry
　　make me smile
　　make me feel that love is true
　　you always stand by my side
　　I don't want to say goodbye

　　To be with you,

　　oh I love you</TEXTAREA><BR></DIV></DIV><BR><SPAN style="COLOR: navy"><STRONG>=================================================<BR>A million thank you to dearest Alex from <A href="http://www.loveisfan.com/" target=_blank><FONT color=#0000ff>LoveIsFan.com</FONT></A><BR>Wish you enjoy this Chinese version of Love is...　　:)<BR>=================================================</STRONG></SPAN></DIV>
]]> </description>
</item>
<item>
<title> ASP+Jmail &#21457;&#36865;&#37038;&#20214;,&#21487;&#25220;&#36865; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=302 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=302 </guid>
<author> &#36213;&#20381;&#29123; </author>
<pubDate>2009-1-5 00:00</pubDate>
<category>所属分类:ASP</category>
<description> <![CDATA[
<P>客户留言邮件通知,ASP+Jmail 发送邮件,可抄送<BR></P>
<P>
<TABLE style="BORDER-RIGHT: #cccccc 1px dotted; TABLE-LAYOUT: fixed; BORDER-TOP: #cccccc 1px dotted; BORDER-LEFT: #cccccc 1px dotted; BORDER-BOTTOM: #cccccc 1px dotted" cellSpacing=0 cellPadding=6 width="95%" align=center border=0>
<TBODY>
<TR>
<TD style="WORD-WRAP: break-word" bgColor=#f3f3f3>
<P>&nbsp;Sub Jmail(Email,Topic,Mailbody) <BR>&nbsp;&nbsp;On Error Resume Next <BR>&nbsp;&nbsp;Dim JMail <BR>&nbsp;&nbsp;Set JMail = Server.CreateObject("JMail.Message") <BR>&nbsp;&nbsp;JMail.silent=true <BR>&nbsp;&nbsp;JMail.Logging = True <BR>&nbsp;&nbsp;JMail.Charset = "gb2312" <BR>&nbsp;&nbsp;If Not(E_ServerUser = "" Or E_ServerPass = "") Then <BR>&nbsp;&nbsp;&nbsp;JMail.MailServerUserName = E_ServerUser <BR>&nbsp;&nbsp;&nbsp;JMail.MailServerPassword = E_ServerPass <BR>&nbsp;&nbsp;End If <BR>&nbsp;&nbsp;JMail.ContentType = "text/html" <BR>&nbsp;&nbsp;JMail.Priority = 1 <BR>&nbsp;&nbsp;JMail.From = E_SendManMail <BR>&nbsp;&nbsp;JMail.FromName = E_SendManName <BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;aryEmail = split(Email, ";")<BR>&nbsp;&nbsp;'发送第一个<BR>&nbsp;&nbsp;JMail.AddRecipient Trim(aryEmail(0)),""<BR>&nbsp;&nbsp;length=UBound(aryEmail)<BR>&nbsp;&nbsp;'抄送其它的<BR>&nbsp;&nbsp;for i=1 to length<BR>&nbsp;&nbsp;&nbsp;JMail.AddRecipientCC Trim(aryEmail(i)),""<BR>&nbsp;&nbsp;next</P>
<P>&nbsp;&nbsp;JMail.Subject = Topic <BR>&nbsp;&nbsp;JMail.Body = Mailbody <BR>&nbsp;&nbsp;JMail.Send (E_Server) <BR>&nbsp;&nbsp;Set JMail = Nothing <BR>&nbsp;&nbsp;SendMail = "OK" <BR>&nbsp;&nbsp;If Err Then SendMail = "False" <BR>&nbsp;End Sub <BR>&nbsp;<BR>&nbsp;dim SendMail<BR>&nbsp;SendMail="False"<BR>&nbsp;<BR>&nbsp;'以下变量需要修改成你自己的信息<BR>&nbsp;E_Server = "smtp.163.com" ''发件服务器 <BR>&nbsp;E_ServerUser = "lastidea" ''登录用户名 <BR>&nbsp;E_ServerPass = "111111" ''登录密码 <BR>&nbsp;E_SendManMail = "lastidea@163.com" ''发件人邮件地址 <BR>&nbsp;E_SendManName = "网站管理员" ''发件人姓名 </P>
<P>'邮件内容<BR>&nbsp;mailContent="&lt;br&gt;留言标题:"&amp;book_title&amp;_<BR>&nbsp;&nbsp;&nbsp;&nbsp;"&lt;br&gt;留言访客:"&amp;guest_name&amp;_<BR>&nbsp;&nbsp;&nbsp;&nbsp;"&lt;br&gt;留言时间:"&amp;now()&amp;_<BR>&nbsp;&nbsp;&nbsp;&nbsp;"&lt;br&gt;手机:"&amp;guest_mobile&amp;_<BR>&nbsp;&nbsp;&nbsp;&nbsp;"&lt;br&gt;电话:"&amp;guest_tel&amp;_<BR>&nbsp;&nbsp;&nbsp;&nbsp;"&lt;br&gt;留言内容:&lt;hr&gt;"&amp;content<BR>&nbsp;'第一个发送,其它为抄送,分号隔开<BR>&nbsp;Jmail "收件邮箱1;收件邮箱2;收件邮箱3","网站["&amp;webTitle&amp;"]有新咨询",mailContent<BR></P></TD></TR></TBODY></TABLE></P>
]]> </description>
</item>
<item>
<title> &#20851;&#20110;jquery&#33719;&#21462;input&#30340;value&#38382;&#39064; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=301 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=301 </guid>
<author> &#36213;&#20381;&#29123; </author>
<pubDate>2008-12-4 00:00</pubDate>
<category>所属分类:JavaScript</category>
<description> <![CDATA[
<TABLE id=content style="TABLE-LAYOUT: fixed; WIDTH: 650px" cellSpacing=10 cellPadding=0 width=650 border=0>
<TBODY>
<TR>
<TD>
<DIV style="FONT-SIZE: 10pt">
<DIV><FONT size=2>刚开始接触jquery，很多东西不熟悉</FONT></DIV>
<DIV><FONT size=2>在用$("#id")来获得页面的input元素的时候，发现$("#id").value不能取到值</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>后来终于在伟大的百度帮助下，找到了问题的原因：</FONT></DIV>
<DIV style="BORDER-RIGHT: #aaaaaa 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #aaaaaa 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #aaaaaa 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #aaaaaa 1px solid; BACKGROUND-COLOR: #f5f5f5">
<DIV><STRONG><FONT size=2>$("")是一个jquery对象，而不是一个dom element</FONT></STRONG></DIV>
<DIV><STRONG><FONT size=2></FONT></STRONG>&nbsp;</DIV>
<DIV><STRONG><FONT size=2>value是dom element的属性</FONT></STRONG></DIV>
<DIV><STRONG><FONT size=2></FONT></STRONG>&nbsp;</DIV>
<DIV><STRONG><FONT size=2>jquery与之对应的是val</FONT></STRONG></DIV>
<DIV><STRONG><FONT size=2></FONT></STRONG>&nbsp;</DIV>
<DIV><STRONG><FONT size=2>val() :获得第一个匹配元素的当前值。</FONT> 
<DIV class=cndesc>&nbsp;</DIV>
<DIV class=cndesc><FONT size=2>val(val):设置每一个匹配元素的值。</FONT></DIV>
<DIV class=cndesc><FONT size=2></FONT>&nbsp;</DIV>
<DIV class=cndesc><FONT size=2></FONT>&nbsp;</DIV></STRONG></DIV></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>所以，代码应该这样写：</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV style="BORDER-RIGHT: #aaaaaa 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #aaaaaa 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #aaaaaa 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #aaaaaa 1px solid; BACKGROUND-COLOR: #f5f5f5">
<DIV><FONT color=#ff0000 size=2>取值：val = $("#id")[0].value;</FONT></DIV>
<DIV><FONT color=#ff0000 size=2>赋值：</FONT></DIV>
<DIV><FONT color=#ff0000 size=2>$("#id")[0].value =&nbsp; "new value";<BR>或者$("#id").val("new value");</FONT></DIV>
<DIV><FONT size=2><BR><FONT color=#ff0000></FONT></FONT>&nbsp;</DIV><FONT color=#ff0000 size=2>或者这样也可以：val = $("#id").attr("value");</FONT></DIV></DIV></TD></TR></TBODY></TABLE>
]]> </description>
</item>
<item>
<title> &#31449;&#38271;&#20316;&#21697;--&#33487;&#24030;&#22825;&#36784;&#20154;&#21147;&#36164;&#28304;&#26377;&#38480;&#20844;&#21496; </title>
<link> http://blog.lastidea.net/blogshow.asp?id=300 </link>
<guid> http://blog.lastidea.net/blogshow.asp?id=300 </guid>
<author> &#36213;&#20381;&#29123; </author>
<pubDate>2008-11-27 00:00</pubDate>
<category>所属分类:关于MyBlog</category>
<description> <![CDATA[
<DIV class=logo><A href="http://www.postjobs.net.cn/"><IMG style="FILTER: " height=53 alt="logo 到首页" hspace=0 src="http://sztchr.sh15.host.35.com/images/logo.gif" width=321 border=0></A></DIV>
<P>苏州天辰人力资源有限公司<BR><A href="http://www.postjobs.net.cn/">http://www.postjobs.net.cn/</A></P>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<P>完全用DIV+CSS,很大程度的改进了程序的结构,做了大量的代码优化,使用更方便,效率更高.</P>
<P>下次准备出PHP版的</P></BLOCKQUOTE>
]]> </description>
</item>
</channel></rss>
