建站全攻略-
从入门到精通--
技巧篇 1.特色ICO
每次看到好的网页总想把它保存在收藏夹里方便以后再去,但时间一久,太多的链接就让人眼花缭乱了,没办法,删!你不想让自己的网页也遭到这样的命运吧?
具体方法:
先打开网页的HTML源文件,在<head>和</head>之间找个空的地方点一下鼠标,(千万别点在<>里),输入:
<link rel="shortcut icon" href="logo.ico">
保存退出。其中“logo.ico”替换成你自己的ICO图标文件的路径。最后记得把网页和ICO图标文件都上传到网上就行了,不过ICO的路径不要变。
这样一来,当别人把你的网页保存到收藏夹的时候看到的不再是千篇一律的HTML文件的图标了,怎么样,很跳吧?^_^
2.设为主页
在网页显眼的地方加上“设为主页”的链接一定会增加被设为主页的机会,毕竟在IE菜单栏上操作太麻烦了,而现在只需要点击一下鼠标。
具体方法:
在网页HTML源文件的<body>和</body>之间的空白处点击鼠标,输入:
<a href="#" onclick="this.style.behavior='url(#default#homepage)';
this.sethomepage('http://www.homepage.com');">设为主页</a>
保存退出。其中的“http://www.homepage.com”替换成你自己的主页;“设为主页”替换成你想要的文字说明或是图片链接。 如果想更霸道些,就把“onclick”改成“onmouseover”试试,不过可能会引起访客的反感哦!自己衡量利弊吧^_^
3.加入收藏夹
原理和设为主页差不多。 具体方法: 在网页HTML源文件的和之间的空白处点击鼠标,输入:
<a href="javascript:window.external.AddFavorite
('http://www.favorite.com',%20'这是加到收藏夹实例')">加到收藏夹</a>
保存退出。其中的“http://www.favorite.com”替换成你自己的主页;“这是加到收藏夹实例”替换成你想要的文字说明(在收藏夹里显示的说明);“加到收藏夹”替换成你想要的文字说明或是图片链接。
4.显示当前日期和时间 可以让来访者知道现在的时间,而且会随着系统时间随时调整。
具体方法:
在网页HTML源文件的<body>和</body>之间你想要时间显示的空白处点击鼠标,输入:
<Script language=”JavaScript”>
<!--
var enabled = 0; today = new Date();
var day; var date;
if(today.getDay()==0) day = "星期日 "
if(today.getDay()==1) day = "星期一 "
if(today.getDay()==2) day = "星期二 "
if(today.getDay()==3) day = "星期三 "
if(today.getDay()==4) day = "星期四 "
if(today.getDay()==5) day = "星期五 "
if(today.getDay()==6) day = "星期六 "
document.fgColor = " FF0072";
date1 =(today.getYear()) + "年" + (today.getMonth() + 1 ) + "月" + today.getDate() + "日 " ;
date2 = day ;
document.write(date1.fontsize(2));
document.write(date2.fontsize(2));
document.write("<span id='clock'></span>");
var now,hours,minutes,seconds,timeValue;
function showtime(){
now = new Date();
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
timeValue = (hours >= 12) ? "下午 " : "上午 ";
timeValue += hours+ ":";
timeValue += ((minutes < 10) ? "0" : "") + minutes + ":";
timeValue += ((seconds < 10) ? "0" : "") + seconds + "";
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}
showtime();
-->
</Script>
保存退出。这里就不要再做什么替换了。
5.显示来了几次 当访客每次来的时候,都可以知道自己究竟来的几次,他会觉得站长一直把他当作贵宾对待而心存感激,而你要做的只是加一段代码罢了^_^
具体方法:
在网页HTML源文件的<body>和</body>之间的空白处点击鼠标,输入:
<Script language=”JavaScript”>
<!--
function getCookieVal(offset)
{var endstr=document.cookie.indexOf(";",offset);
if(endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset,endstr));}
function GetCookie(name)
{var arg=name+"=";var alen=arg.length;
var clen=document.cookie.length;var i=0;
while(i<clen)
{var j=i+alen;
if(document.cookie.substring(i,j)==arg)
return getCookieVal(j);
i=document.cookie.indexOf(" ",i)+1;
if(i==0)
break;}
return null;}
function SetCookie(name,value)
{var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(2<argc)?argv[2]:null;
var path=(3<argc)?argv[3]:null;
var domain=(4<argc)?argv[4]:null;
var secure=(5<argc)?argv[5]:false;
document.cookie=name+"="+escape(value)+((expires==null)?"":("; expires="+expires.toGMTString()))+((path==null)?"":("; path="+path))+((domain==null)?"":("; domain="+domain))+((secure==true)?"; secure":"");}
var expdate=new Date();
var visits;
expdate.setTime(expdate.getTime()+(24*60*60*1000*365));
if(!(visits=GetCookie("visits")))
visits=0;
visits++;
SetCookie("visits",visits,expdate,"/",null,false);
if(document.lastModified.substring(2,3)=="/")
document.write(“你已经来了”);
document.write("<font color=red ><B>"+visits+"</font>"+"</B> ");
document.write(“次了!”);
-->
</Script>
保存退出。我设置的数字字体颜色是大红,汉字颜色是默认的。
> >