JS或者Jquery打开一个新页面,怎么打开??
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>JS实现打开新页面</title>
<script type="text/javascript">
function open1(){
window.location.href="http://www.baidu.com";
}
</script>
</head>
<body>
<a href="javascript:void(0)" onclick="open1()">点击我,在当前页面打开指定的页面</a>
</body>
扩展资料
js打开新窗口与页面跳转
1、在当前窗口中打开窗口
window.location.href="http://www.baidu.com".
等同于<a href="http://www.baidu.com" title="百度">百度一下</a>
2、在新窗口中打开新窗口
window.open("http://www.baidu.com").
等同于<a href ="http://www.baidu.com" title="百度" target = "_blank">百度一下</a>