javascript入门经典---笔记6 (打开新窗口)

2024-05-11 01:48

本文主要是介绍javascript入门经典---笔记6 (打开新窗口),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

window 对象的 open() 方法打开一个新的窗口,

该方法有3 个参数:

第一个参数是要加载的URL;

第二个是为新窗口分配的名字,是用于HTML标记中作为target属性使用。例如如果将新窗口的第二个参数设置为mywindow ,并在原窗口的页面上设置一个超连接<a  href = "test3.html"  target=mywindow> ,点击超链接时,超链接将打开新的子窗口;

第三个参数是可以用来指定新窗口的width 和 height 属性。

var newWindow;newWindow = window.open("test.html", "mywindow", "width=200 height=200");
点击图片出现子窗口:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
var newWindow;
function details(winURL){
/*这里新打开的窗口均为mywindow ,则点击第二个图片时,仍旧在原来的子窗口,而不是同时打开两个*/newWindow = window.open(winURL,"mywindow","width=220,height=200");
/*打开的新窗口在原来窗口前面*/
newWindow.focus();
return false;
}
</script>
</head>
<body>
<h2>ONLINE BOOK HUYER</h2>
Click any of the images below for more details 
<p><strong>Professional Active Server Pages .Net </strong></p>
<img src="1.gif" οnclick="details('a.html')"/>
<p><strong>Beginning Dreamweaver MX 2004 </strong></p>
<img src="1.gif" οnclick="details('b.html')"/>
</body>

在新窗口中添加HTML

第一个参数是空字符:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function details(winURL){
var newWindow = window.open("", "my", "width=120,height=120");
/*打开document对象以接受HTML输入*/
newWindow.document.open();
/*用document.write的方法写入*/
newWindow.document.write("<p>hello</p>");
newWindow.document.write("<p>welcom to here</p>");
/*关闭文档输入,若再用document.write写,会替换掉原来的HTML*/
newWindow.document.close();
/*再写入,只有new html 了*/
newWindow.document.write("<p>new HTML</p>");
}
</script>
</head>
<body>
<input type="button"  value="click" οnclick="details()"/>
</body>
</html>

源窗口与新窗口数据互传

源页面:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<script type="text/javascript">
var windows;//这里 windows 必须是全局变量,否则change()函数不可以使用function newWindow(){
windows= window.open("new.html", "new", "width=200,height=200");
/*将子窗口位置移动到距左边200像素,上边200像素*/
windows.moveTo(400, 200) 
}function change(){/*获取新窗口的表单值*/document.form1.text1.value=windows.document.form1.text1.value;	 
}
</script>
<body></body>
<form name="form1">
<input type="button" value="newWindow" οnclick="newWindow()"><br>
<input type="text" name="text1" value="">
<input type="button" value="change" οnclick="change()">
</form>
</html>

新页面,即作为原页面子窗口的页面new.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<script type="text/javascript">
var windows;//这里 windows 必须是全局变量,否则change()函数不可以使用function newWindow(){windows= window.open("new.html", "new", "width=200,height=200");	
}function change(){/*获取新窗口的表单值*/document.form1.text1.value=windows.document.form1.text1.value;	 
}
</script>
<body></body>
<form name="form1">
<input type="button" value="newWindow" οnclick="newWindow()"><br>
<input type="text" name="text1" value="">
<input type="button" value="change" οnclick="change()">
</form>
</html>

一个可以简单的添加删除数目的网页:

主窗口:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title><script type="text/javascript">
/*添加删除的函数都是在源窗口的代码中实现的,在子页面跳转函数只需要通过 window.opener 引用源窗口即可*/
/*定义数组,书的名称以及价格,是否被添加的标识符*/
var myarray = new Array();
/*注意一维数组要变成二维数组必须要重新 new 一次*/myarray[101] = new Array();myarray[201] = new Array();myarray[101][0]="Professional Active Server Pages .Net ";
myarray[101][1]="$35";
myarray[101][2]=0;myarray[201][0]="Beginning Dreamweaver MX 2004 ";
myarray[201][1]="$35"; 
myarray[201][2]=0; /*点击某本书,弹出书的详细信息以及是否添加到购物车*/
var newWindow;
function details(winURL){
newWindow = window.open(winURL,"mywindow","width=220,height=200");
newWindow.focus();
return false;
}/*点击查询购物车,新建窗口,写入所添加的书目*/
var allwindow;
function allw(){allwindow = window.open("c.html", "allwindow","width=220,height=200");allwindow.document.open();allwindow.document.write("<h4>"+"Your shopping basket contains :"+"</h4>"+"<br>");	/*basketItems 未赋值,是undefined啊,?*/var basketItems;/*检查购物车内有没有书的标识符*/var contains=false;for (basketItems in myarray ){/*数组中的标志符,因为addBook() 中设置某书的标识符为1 */if(myarray[basketItems][2]>0){allwindow.document.write(myarray[basketItems][0] + "at" +myarray[basketItems][1]);allwindow.document.write("  ");allwindow.document.write("<input  type='button'"+" οnclick='" + "window.opener.removeBook(" + basketItems + ")'"+"value='删除'"+" >");/*购物车内有书,则设置标识符为true*/contains=true;		}		}	/*没有书*/if(contains==false){allwindow.document.write("<strong>you have not choose books</strong>");}allwindow.document.close();
}/*添加书,添加成功后将书的detail页面关闭*/
function addBook(num){myarray[num][2]=1;alert("添加成功");newWindow.close();
}/*删除书*/
function removeBook(num){myarray[num][2]=0;alert("删除成功");allwindow.close();
}
</script>
</head>
<body>
<h2>ONLINE BOOK HUYER</h2>
<input type="button" οnclick="allw()" value="查询购物车"><br>
Click any of the images below for more details 
<p><strong>Professional Active Server Pages .Net </strong></p>
<img src="1.gif" οnclick="details('a.html')"/>
<p><strong>Beginning Dreamweaver MX 2004 </strong></p>
<img src="1.gif" οnclick="details('b.html')"/>
</body>
</html>
第一本书(与第二本类似):

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
</script>
</head>
<body>
Professional Active Server Pages .Net 
<input type="button" value="add" οnclick="window.opener.addBook(101)">
</body>
</html>
查询购物车即为空网页




这篇关于javascript入门经典---笔记6 (打开新窗口)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/978167

相关文章

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis