zoukankan      html  css  js  c++  java
  • jsp重新打开一个新的页面

    有以下一种实现方式:

    1、target="_blank”

        <a href="document.html" target="_blank">my document</a> 浏览器会另开一个新窗口显示document.html文档
    2、target="_parent"

        <a href="document.html" target="_parent">my document</a>指向父frameset文档
    3、“_self”

        <a href="document.html" target="_self">my document</a>把文档调入当前页框
    4、“_top”

        <a href="document.html" target="_top">my document</a> 去掉所有页框并用document.html取代frameset文档

  • 相关阅读:
    noip模拟赛#38
    noip模拟赛#45
    noip模拟赛#15
    noip模拟赛#14
    noip模拟赛
    rp++
    bzoj2127: happiness
    bzoj3209:3209: 花神的数论题
    10.1 plan
    FFT
  • 原文地址:https://www.cnblogs.com/lihuibin/p/9534915.html
Copyright © 2011-2022 走看看