﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-BZZ-最新评论</title><link>http://www.cnblogs.com/BZZ/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Fri, 12 Dec 2008 06:36:24 GMT</pubDate><lastBuildDate>Fri, 12 Dec 2008 06:36:24 GMT</lastBuildDate><generator>cnblogs</generator><item><title>Re:上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2010/01/08/1053073.html#1742557</link><dc:creator>cloudgamer</dc:creator><author>cloudgamer</author><pubDate>Fri, 08 Jan 2010 03:01:25 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2010/01/08/1053073.html#1742557</guid><description><![CDATA[[url=http://www.cnblogs.com/cloudgamer/archive/2009/12/22/ImagePreview.html]我也写了一个图片预览[/url]<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">cloudgamer</a> 2010-01-08 11:01 <a href="http://www.cnblogs.com/BZZ/archive/2010/01/08/1053073.html#1742557#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2008/11/20/1053073.html#1375450</link><dc:creator>iRobot</dc:creator><author>iRobot</author><pubDate>Thu, 20 Nov 2008 03:00:58 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/11/20/1053073.html#1375450</guid><description><![CDATA[/---------------------------------------------------<br/>//过一小会获取div的宽高.<br/>setTimeout(&quot;setImg(document.all.divShow)&quot;,100);<br/>/---------------------------------------------------<br/><br/><br/>/---------直接运行，不用等待也是可以-------<br/>setImg(document.all.divShow);<br/>/---------------------------------------------------<br/><br/><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">iRobot</a> 2008-11-20 11:00 <a href="http://www.cnblogs.com/BZZ/archive/2008/11/20/1053073.html#1375450#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 这是我写的上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2008/11/06/1053073.html#1362923</link><dc:creator>蓝色心情</dc:creator><author>蓝色心情</author><pubDate>Thu, 06 Nov 2008 07:06:12 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/11/06/1053073.html#1362923</guid><description><![CDATA[a.innerHTML=width+&quot;v&quot;+height <br/>b.innerHTML=width+&quot;v&quot;+height <br/>c.innerHTML=width+&quot;v&quot;+height<br/>d.innerHTML=width+&quot;v&quot;+height <br/>&lt;span id=&quot;a&quot;&gt;&lt;/span&gt;&lt;span id=&quot;b&quot;&gt;&lt;/span&gt;&lt;span id=&quot;c&quot;&gt;&lt;/span&gt;&lt;span id=&quot;d&quot;&gt;&lt;/span&gt; <br/>&lt;/div&gt; <br/><br/>这些是用于测试的,无意义的.<br/>不好意思,贴多了.<br/><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">蓝色心情</a> 2008-11-06 15:06 <a href="http://www.cnblogs.com/BZZ/archive/2008/11/06/1053073.html#1362923#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 这是我写的上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2008/11/06/1053073.html#1362916</link><dc:creator>蓝色心情</dc:creator><author>蓝色心情</author><pubDate>Thu, 06 Nov 2008 06:58:43 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/11/06/1053073.html#1362916</guid><description><![CDATA[&lt;script type=&quot;text/javascript&quot;&gt;<br/>&lt;!--<br/>//显示上传的图片<br/>var OriginImage=new Image();   <br/>function viewmypic(mypic,imgfile) <br/>{<br/>if (imgfile.value){<br/>	mypic.src=imgfile.value;<br/>	mypic.style.display=&quot;&quot;;<br/>	mypic.border=1;<br/>	<br/>	if(OriginImage.src!=mypic.src)OriginImage.src=mypic.src; <br/>	var width,height<br/>	width=OriginImage.width; <br/>	height=OriginImage.height;<br/>	if(width&lt;=270) {<br/>		if(width&gt;height)<br/>		{<br/>			width=width<br/>			height=height<br/>			a.innerHTML=width+&quot;v&quot;+height<br/>		}<br/>		else<br/>		{<br/>			width=width*270/height<br/>			height=270<br/>			b.innerHTML=width+&quot;v&quot;+height<br/><br/>		}<br/>		}<br/>		else<br/>		{<br/>		if(width&gt;height)<br/>		{<br/>			height=height*270/width<br/>			width=270<br/>			c.innerHTML=width+&quot;v&quot;+height<br/>		}<br/>		else<br/>		{<br/>			width=width*270/height<br/>			height=270<br/>			d.innerHTML=width+&quot;v&quot;+height<br/>		} <br/>	}<br/>   <br/>	mypic.width=width;<br/>	mypic.height=height;<br/>	}  <br/>}<br/>//--&gt;<br/>&lt;/script&gt;<br/>&lt;style&gt;<br/>#showImages {<br/>	height: 270px;<br/>	width: 270px;<br/>	border: 1px solid #c3c3c3;<br/>	margin:10px 0 10px 10px;<br/>	text-align: center;<br/>	vertical-align: middle;<br/>	background: #dcdcdc;<br/>}<br/>.textfield {<br/>	height: 18px;<br/>	width: auto;<br/>	border: 1px solid #c3c3c3;<br/>	background: #fff;<br/>	line-height: 18px;<br/>	padding: 0 2px;<br/>}<br/>&lt;/style&gt;<br/>&lt;form id=&quot;form&quot; name=&quot;form&quot; enctype=&quot;multipart/form-data&quot; method=&quot;post&quot; action=&quot;&quot;&gt;<br/> &lt;input name=&quot;file1&quot; type=&quot;file&quot; class=&quot;textfield&quot; size=&quot;37&quot; onchange=&quot;viewmypic(showImage,this.form.file1);&quot; /&gt;<br/>&lt;/form&gt;<br/>&lt;div id=&quot;showImages&quot;&gt;&lt;img name=&quot;showImage&quot; id=&quot;showImage&quot; src=&quot;&quot; style=&quot;display:none;&quot; alt=&quot;预览图片&quot;/&gt;&lt;/div&gt;&lt;span id=&quot;a&quot;&gt;&lt;/span&gt;&lt;span id=&quot;b&quot;&gt;&lt;/span&gt;&lt;span id=&quot;c&quot;&gt;&lt;/span&gt;&lt;span id=&quot;d&quot;&gt;&lt;/span&gt;<br/>&lt;/div&gt;<br/><br/><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">蓝色心情</a> 2008-11-06 14:58 <a href="http://www.cnblogs.com/BZZ/archive/2008/11/06/1053073.html#1362916#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 开机总是自检</title><link>http://www.cnblogs.com/BZZ/archive/2008/09/23/1042769.html#1324045</link><dc:creator>青岛SEO</dc:creator><author>青岛SEO</author><pubDate>Mon, 22 Sep 2008 18:06:02 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/09/23/1042769.html#1324045</guid><description><![CDATA[我的机器也出现这种问题，试试ing<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">青岛SEO</a> 2008-09-23 02:06 <a href="http://www.cnblogs.com/BZZ/archive/2008/09/23/1042769.html#1324045#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2008/09/12/1053073.html#1316072</link><dc:creator>0music0</dc:creator><author>0music0</author><pubDate>Fri, 12 Sep 2008 09:14:09 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/09/12/1053073.html#1316072</guid><description><![CDATA[o.offsetWidth,和o.offsetHeight为什么都是0呢？<br/>请问可能是什么问题，谢谢！<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">0music0</a> 2008-09-12 17:14 <a href="http://www.cnblogs.com/BZZ/archive/2008/09/12/1053073.html#1316072#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2008/07/08/1053073.html#1247523</link><dc:creator>一生不够</dc:creator><author>一生不够</author><pubDate>Mon, 07 Jul 2008 16:17:21 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/07/08/1053073.html#1247523</guid><description><![CDATA[嗯,相当不错哦<br>多谢谢<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">一生不够</a> 2008-07-08 00:17 <a href="http://www.cnblogs.com/BZZ/archive/2008/07/08/1053073.html#1247523#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 开机总是自检</title><link>http://www.cnblogs.com/BZZ/archive/2008/06/18/1042769.html#1229583</link><dc:creator>Simbas</dc:creator><author>Simbas</author><pubDate>Wed, 18 Jun 2008 10:02:35 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/06/18/1042769.html#1229583</guid><description><![CDATA[       上面那种方面我也是过，但重启后有时候还是会出现自检，有时候不会，硬盘也用软件测试过来，没有问题。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">Simbas</a> 2008-06-18 18:02 <a href="http://www.cnblogs.com/BZZ/archive/2008/06/18/1042769.html#1229583#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>好！！！！</title><link>http://www.cnblogs.com/BZZ/archive/2008/06/14/1053073.html#1225803</link><dc:creator>xuyejiang</dc:creator><author>xuyejiang</author><pubDate>Sat, 14 Jun 2008 07:49:34 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/06/14/1053073.html#1225803</guid><description><![CDATA[呵呵<br>好东西<br>DDDDDDDDDDDDDDDDDD<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">xuyejiang</a> 2008-06-14 15:49 <a href="http://www.cnblogs.com/BZZ/archive/2008/06/14/1053073.html#1225803#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 上传图片前预览</title><link>http://www.cnblogs.com/BZZ/archive/2008/03/26/1053073.html#1123447</link><dc:creator>黯然</dc:creator><author>黯然</author><pubDate>Wed, 26 Mar 2008 09:34:00 GMT</pubDate><guid>http://www.cnblogs.com/BZZ/archive/2008/03/26/1053073.html#1123447</guid><description><![CDATA[首先感谢BZZ,你让我学到了很多知识.<br>其次我发现这个代码有一个BUG,<br>就是在多次选择照片的时候会发生错误.<br>修改ShowImage方法<br><br>function ShowImage(path){<br> //处理前是原图，先将其隐藏，<br> document.all.divShow.style.visibility = &quot;hidden&quot;;<br>document.all.divShow.filters.item(&quot;DXImageTransform.Microsoft.AlphaImageLoader&quot;).src = path;<br>document.all.divShow.filters.item(&quot;DXImageTransform.Microsoft.AlphaImageLoader&quot;).sizingMethod = &quot;image&quot;;<br>//过一小会获取div的宽高.<br>setTimeout(&quot;setImg(document.all.divShow)&quot;,100);<br>}<br><br>好像改成这样就可以了.<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/BZZ/" target="_blank">黯然</a> 2008-03-26 17:34 <a href="http://www.cnblogs.com/BZZ/archive/2008/03/26/1053073.html#1123447#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>
