RT

解决方案 »

  1.   

    <a href='~!@#$%^&*...'>
      

  2.   

    搞不清楚LZ要表达的意思
    是要点超连接 在原来的窗口显示连接页吗?
    <a href="new.aspx" target="_self">好象是这样吧 很久没弄程序 记不太清楚了
      

  3.   

    <a href target> 指定超级链接的分割窗口 
    <a href=#锚的名称> 指定锚名称的超级链接 
    <a href> 指定超级链接 
    <a name=锚的名称> 被连结点的名称 
      

  4.   

    The Anchor Tag and the Name Attribute
    The name attribute is used to create a named anchor. When using named anchors we can create links that can jump directly into a specific section on a page, instead of letting the user scroll around to find what he/she is looking for.Below is the syntax of a named anchor:<a name="label">Text to be displayed</a> The name attribute is used to create a named anchor. The name of the anchor can be any text you care to use.The line below defines a named anchor:<a name="tips">Useful Tips Section</a> You should notice that a named anchor is not displayed in a special way.To link directly to the "tips" section, add a # sign and the name of the anchor to the end of a URL, like this:<a href="http://www.w3schools.com/html_links.asp#tips">
    Jump to the Useful Tips Section</a> A hyperlink to the Useful Tips Section from WITHIN the file "html_links.asp" will look like this: <a href="#tips">Jump to the Useful Tips Section</a> 
      

  5.   

    lz的意思是不是说,点击连接跳转后,地址栏里的路径不改变呀?如果是:
       方案一: 用框架;
       方案二:用server.transfer()跳转;【这个用的时候,它跳转了,原来的页面就不往下执行了。】
      

  6.   

    大宋提刑官,说法应该是的,这个问题琢磨了好长时间。
    应该楼主问的就是 锚点!<a href="#pagetop">顶部</a> <a href="#pagebottom">底部</a>
    <a name="pagetop"></a>
    <div style=" width:100%; height:500px; border:1px #3399FF dashed">1</div>
    <a href="#pagetop">顶部</a> <a href="#pagebottom">底部</a>
    <div style=" width:100%; height:500px; border:1px #3399FF dashed">2</div>
    <a href="#pagetop">顶部</a> <a href="#pagebottom">底部</a>
    <a name="pagebottom"></a>
    <div style="  width:100%; height:500px; border:1px #3399FF dashed">3</div>
      

  7.   

    该怎么描述腻
    我用div+CSS布的局
    就是在一个页面里点击一个超连接,让某个DIV改变,其他不变
    而<a href="Dafatlt.aspx">homepage</a>好象实现不了
    不知道该怎么做?
      

  8.   

    就是在一个页面里点击一个超连接,让某个DIV改变,其他不变
    ---------------------------------------------------
    ???什么意思,我又要咂摸了.
    是不是跳到某个DIV块?
      

  9.   

    应该是ONLY_ENDURE所说的"锚",让我先试试
      

  10.   

    我本意是用超连接做导航
    点击一个超连接后某个div改变,其它的不变(如顶部(top.ascx)和底部变(bottom.ascx))
      

  11.   

    某个div变?貌似又到ajax了,点过了后某个div加载新数据……猜楼主的意思很累!
      

  12.   

    刚搜索一下关于"锚"的用法,是指页面内的跳动
    不是我想要表达的意思
    就那我经常上的网站来说吧(www.newegg.com.cn)点击上面的超连接(导航)的效果
    难道是用frameset实现的吗?
      

  13.   

    哦,你说的是点接数字按钮,下面的div内容改变,
    这要用到css和javascript的知识
    你点击数字按钮,实现某div显示,其它div隐藏.
    javascript动态实现
    在初始时,实际上这三个div已经加载了ps:如果数据量大的话,就建议不使用上述的方法了,要考虑ajax异步请求传输数据.
      

  14.   

    初始页面,div1,div2,div3都要加载:
    ---------------------------------------------------       Content(div1,div2,div3)
    -----------------------------------------------------------------

    点击按钮时
    -----------------------------------------------------------------
             content(某一div)-----------------------------------------------------------------
      

  15.   

    没说详细,初始时虽然都加载,但只设某div显示.原理就是用javascript动态修改元素CSS.
      

  16.   

    点击按钮时 
    ----------------------------------------------------------------- 
                      content(某一div) 其它div隐藏-----------------------------------------------------------------

    我只是把大体的原理和实现方法说了,如果谁有现成的代码,能贴上来最好了. :=)
      

  17.   

    可以用ajax来实现对单个DIV的刷新跳转,我今天找了半天没找到那句话,明天再帮你找,看看能不能使用。
      

  18.   

    找不到了 郁闷 好象是做Google地图的时候用过,实在抱歉。
      

  19.   

    楼主看看 only_endure 给你的思路...........