web课件并附有习题练习还有实例详细的讲解了WEB的各种开发过程是学习 的好资料

源代码在线查看: 例4-11.txt

软件大小: 22806 K
上传用户: wanghao891207
关键词: web WEB 过程
下载地址: 免注册下载 普通下载 VIP

相关代码

				window对象示例
				
				function confSubmit( ){
				if ((ok=confirm("您确定输入正确吗?"))==true){
				var nw=open("a.htm","nwin","width=500,height=200,toolbar=1");
				nw.focus( );
				nw.document.write("您的名字是:"+parent.document.input_form.nm.value);
				nw.document.write("");
				nw.document.write("您的电话号码是:" + parent.document.input_form.phone.value);
				}
				else
				    alert("请您重新输入!");
				}
				
				
				
				defaultStatus="这是一个window对象使用示例。";
				
				window对象使用示例
				
				请输入您的姓名:
				请输入您的电话号码:
				  
				
							

相关资源