资源预览内容
第1页 / 共27页
第2页 / 共27页
第3页 / 共27页
第4页 / 共27页
第5页 / 共27页
第6页 / 共27页
第7页 / 共27页
第8页 / 共27页
第9页 / 共27页
第10页 / 共27页
亲,该文档总共27页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述
一、 实验目的1. 掌握常用的HTML语言标记;2. 利用文本编辑器建立HTML文档,制作简单网页。二、 实验要求1. 独立完成实验。2. 书写实验报告书。三、 实验内容1. 在文本编辑器“记事本”中输入如下的HTML代码程序,以文件名sy1.html保存,并在浏览器中运行。源程序清单如下:Example wele to you! A simple HTML document Wele to the world of HTML!This is a simple HTML document. It is to give you an outline of how to write HTML file and how the markup tags work in the HTML fileFollowing in three chapters. This is the chapter one! This is the chapter two! This is the chapter three! Following is item of the chapter two! item ent item1 font item2 table item3 form 1234567End of the example document运行结果:2.编写一个能输入如图所示界面的HTML文件。 程序代码: 表单X例 请留下个人资料   某: :   :   性别:  女  男   年龄: 20岁以下20岁-30岁30岁-40岁40岁-50岁50岁-60岁 留言版:           运动您的爱好:阅读          听音乐          旅游 运行结果:一、实验目的1. 掌握JavaScript技术,基本掌握JavaScript的开发技巧;2. 利用文本编辑器建立JavaScript脚本语言进行简单编程。二、实验要求:1. 根据以下实验内容书写实验准备报告。2. 独立完成实验。三、实验内容1.显示一个动态的时钟在文本编辑器“记事本”中输入如下代码程序,请仔细阅读下列程序语句,理解每条语句的作用。源程序清单如下: var timer=nullfunction stop() clearTimeout(timer)function start() var time=new Date()var hours=time.getHours()var minutes=time.getMinutes()var seconds=time.getSeconds() minutes=(minutes10)?0:)+minutes seconds=(seconds10)?0:)+secondsvar clock=hours+:+minutes+:+secondsdocument.forms0.display.value=clock timer=setTimeout(start(),1000) 现在是时间: 运行结果:2.事件驱动和事件处理在文本编辑器“记事本”中输入如下代码程序,请仔细阅读下列程序语句,理解每条语句的作用。源程序清单如下: function myfunction()alert (HELLO!) By pressing the button,a function will be called.The function will alert a message. 运行结果:3. JavaScript表单校验 编写程序register.html,做一个如下图所示的用户注册界面,要求对用户填写的部分进行合法性检验。源程序清单如下: 用户登录 function myfunction() if(document.forms0.username.value=)alert(用户名不能为空,请输入用户名!);form1.username.focus();return false; if (form1.userpassword.value = )alert(用户密码不能为空,请输入密码!);form1.userpassword.focus();return false; else document.write(您好,+document.forms0.username.value+!,欢迎登录!); 用户登录:请输入用户名:请输入密码:     运行结果:一、实验目的1. 掌握JSP的Request与Response隐式对象
收藏 下载该资源
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号