图片按比例缩放js代码<script language="JavaScript"><!--//图片按比例缩放var flag=false;function DrawImage(ImgD,iwidth,iheight){ var image=new Image(); image.src=ImgD.src;if(image.width>0 && image.height>0){ flag=true; if(image.width/image.height>= iwidth/iheight){ if(image.width> Read More
posted @ 2011-08-12 09:28 无为而无不为 Views(163) Comments(0) Diggs(0) Edit
收集最常用的网页中嵌入视频代码大全,各种各样的网页视频播放器代码.网页中嵌入视频代码综合完全版1.avi格式 代码片断如下:程序代码:<objectid="video"width="400"height="200"border="0"classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA"> <paramname="ShowDisplay"value="0"> <paramnam Read More
posted @ 2011-08-12 09:26 无为而无不为 Views(934) Comments(0) Diggs(0) Edit
javaScript Read More
posted @ 2011-08-06 17:03 无为而无不为 Views(467) Comments(0) Diggs(2) Edit
蜘蛛爬行遍历策略分为两种:一种是深度优先,另一种是广度优先。   深度优先就是蜘蛛沿着发现的链接一直先前爬行,知道最后的网页没有链接就返回发现的链接页面从第二个链接继续向前爬行。   广度优先就是蜘蛛发现了一个网页就把这个网页上的一级链接全部打开抓取一遍,之后再把所有一级网页上的链接抓取一遍,一次类推。 Read More
posted @ 2011-08-05 13:24 无为而无不为 Views(192) Comments(0) Diggs(0) Edit
ckeditor的详细配置:在网上找了好久终于找到了!O(∩_∩)O哈哈~一、使用方法:1、在页面<head>中引入ckeditor核心文件ckeditor.js<script type="text/javascript" src="ckeditor/ckeditor.js"></script>2、在使用编辑器的地方插入HTML控件<textarea><textarea id="TextArea1" cols="20" rows="2" cl Read More
posted @ 2011-08-04 13:26 无为而无不为 Views(1031) Comments(1) Diggs(0) Edit