zoukankan      html  css  js  c++  java
  • js提示后跳转代码集合

     
    此处为跳转,在不出现新页面的情况下:
    Response.Write("<script language=javascript>alert('提示信息.');window.location='跳转页面'</script>");
    Response.Write("<script language=javascript>alert('提示信息.');
    parent.location.href='跳转页面'</script>");
     
    此处为跳转,在原页面不关闭的情况下出现新页面:
    Response.Write("<script language=javascript>alert('提示信息.');
    window.open('跳转页面')</script>");
    此处为在框架中打开:
    Response.Write("<script language=javascript>alert('提示信息.');
    window.location.href='跳转页面',target='框架名称'</script>");
  • 相关阅读:
    Flask--目录
    Linux相关目录
    Mac 提示错误”xcrun: error“
    subprocess模块
    压缩模块
    GitPython模块
    Ansible-ansible命令
    YAML语法
    Ansible-安装
    Ansible-概念
  • 原文地址:https://www.cnblogs.com/jxcia_Lai/p/1745114.html
Copyright © 2011-2022 走看看