设置你的网页为主页

来源:互联网 发布:如何查看淘宝消费总额 编辑:程序博客网 时间:2024/05/17 21:26

让网页的访问者记住你的网页的一个办法就是将你的网页设置为主页

 

<script language = "JavaScript">
function my_homepage() {
    
this.homepage.style.behavior = 'url(#default#homepage)';
    
this.homepage.setHomePage('这是你想设置为主页的地址');
    }
    
</script>
    
<p align = "center"><a href = "home.htm" name = "homepage"
    onclick 
= "my_homepage();"/>
    
<font color = "#0000FF">Set this page as homepage</font></a></p>
    
原创粉丝点击