你只要看看超连接的属性就有了

解决方案 »

  1.   

    <SCRIPT LANGUAGE="JavaScript">
    // Set slideShowSpeed (milliseconds)
    var slideShowSpeed = 300;
    // Duration of crossfade (seconds)
    var crossFadeDuration = 4;
    // Specify the image files
    var Pic = new Array();
    // to add more images, just continue
    // the pattern, adding to the array below
    Pic[0] = 'http://dotnet.aspx.cc/Images/logoSite.gif'
    Pic[1] = 'http://dotnet.aspx.cc/Images/banner.gif'
    Pic[2] = '2004-08-16_r2_c1.jpg'
    Pic[3] = '2004-08-16_r3_c1.jpg'var h = new Array();
    // to add more images, just continue
    // the pattern, adding to the array below
    h[0] = 'http://dotnet.aspx.cc/'
    h[1] = 'http://dotnet.aspx.cc/'
    h[2] = 'http://dotnet.aspx.cc/'
    h[3] = 'http://dotnet.aspx.cc/'var t;
    var j = 0;
    var p = Pic.length;
    var preLoad = new Array();
    for (i = 0; i < p; i++) {
    preLoad[i] = new Image();
    preLoad[i].src = Pic[i];
    }
    function runSlideShow() {
    if (document.all) {
    document.images.SlideShow.style.filter="blendTrans(duration=2)";
    document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
    document.images.SlideShow.filters.blendTrans.Apply();
    }
    document.all.SlideShowHref.href=h[j]
    document.images.SlideShow.src = preLoad[j].src;
    if (document.all) {
    document.images.SlideShow.filters.blendTrans.Play();
    }
    j = j + 1;
    if (j > (p - 1)) j = 0;
    t = setTimeout('runSlideShow()', slideShowSpeed);
    }
    </script>
    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="runSlideShow()">
    <table width="101%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td align="center" valign="middle" id="VU"><a href="#菜鸟提问点,Thank you!" id='SlideShowHref'><img name='SlideShow' border="0"></a></td>
    </tr>
    </table>
      

  2.   

    高手一出手
    就知有没有...