<LINK REL=stylesheet HREF="styles.css" type="text/css">see
http://www.w3.org/TR/REC-html32.html#link

解决方案 »

  1.   

    <LINK REL="SHORTCUT ICON" HREF="mypage.ico">
    <LINK REL="SHORTCUT ICON" HREF="http://www.mysite.com/graphics/icons/mypage.ico">
      

  2.   

    不好意思,可能是我没说清楚
    我是指javascript中的方法link()
      

  3.   

    <script>
    a='连接到csdn首页'document.write(a.link('www.csdn.net'))</script>
      

  4.   

    错了,document.write(a.link('http://www.csdn.net'))
      

  5.   

    link method? do you mean
    window.location.href="http://www.csdn.net";
    ?
      

  6.   

    <script>
    <!--
    var strVariable = "欢迎光临无垠网域!";
    strVariable = strVariable.link("http://www.5inet.net");
    document.write(strVariable);
    //-->
    </script>
      

  7.   

    我明白link的用法了,还想问一下
    <html>
    <head>
    <script language="JavaScript">
    function isconfirm()
    {
        if ( confirm("您肯定吗?") ) 
        { 
            
        }

    </script>
    </head>
    <input type='Button' value=' 新增 ' onClick='isconfirm()'>
    </html>
    在上面的程序段里,在弹出confirm的确认框后,如果是的话(也就是执行if里面的程序),如何让他自动刷新页面,并且还能传递参数如果大家不知道的话,也没关系,我照样会给分的
      

  8.   

    在弹出confirm的确认框后,如果是的话,使用
    location=xxxx.htm+"?para=1"xxxx.htm是当前的window.location,读取的时候用location.split("?")
      

  9.   

    大哥能不能详细一点,你就当作添程题把,页面名为f.htm
      

  10.   

    llrock(百乐宝),skyover(嘻哈呵嘿) 说的都很对
    bencalie(Bencalie) 谢谢你解决了我的问题