当前位置:网站首页>js源码跳转的几种方式,在当前页面跳转,在空白页跳转
js源码跳转的几种方式,在当前页面跳转,在空白页跳转
2022-08-02 12:25:00 【睡竹】
1、直接在当前页面进行跳转
超链接方式:
<a href="http://www.baidu.com"></a>
window.open()方法实现
//当前页面跳转
window.open( url, "_self" )
window.location.href 实现
//当前页面跳转
window.location.href =url
2、在新页面进行跳转
超链接方式:
<a href="http://www.baidu.com" target="_blank"></a>
window.open()方法实现:
//默认打开新窗口
window.open( url )
//打开新窗口
window.open( url, "_blank" )
边栏推荐
猜你喜欢
随机推荐
PHP伪协议详解
Taurus.MVC V3.0.3 Microservice Open Source Framework Released: Make the evolution of .NET architecture easier in large concurrency.
How to connect TDengine through DBeaver?
linux basic command explanation
QAbstractScrollArea、QScrollArea
用位运算为你的程序加速
借小程序容器打造自有App小程序生态
中原银行实时风控体系建设实践
How to set up wireless PPI communication between Weiluntong touch screen and S7-200smart?
力扣27-移除元素——简单题
numpy&pands 中的unique
Golang map数组按字段分类
太厉害了,终于有人能把TCP/IP 协议讲的明明白白了
#Summer Challenge#[FFH] OpenHarmony Device Development Foundation (3) Compilation Dependencies
Solve the problem of Chinese garbled characters in exporting excel file names
分布式限流利器,手撕&redisson实现
Likou 35 - search for insertion position - binary search
解决导出excel文件名中文乱码的问题
svg气球升起爆炸js特效
【MySQL系列】- LIKE查询 以%开头一定会让索引失效吗