您好,欢迎访问三七文档
当前位置:首页 > IT计算机/网络 > Java > 2016Web程序设计离线作业答案
浙江大学远程教育学院《Web程序设计》课程作业姓名:学号:年级:学习中心:—————————————————————————————HTML部分一、选择题:1.以下哪个选项能显示成两行文字Aa)ThefirstlineandBRsecondlineb)Thefirstlineand\nsecondlinec)Thefirstlineandsecondlined)Thefirstlineandsecondline2.Ahref=mailto:webmaster@zju.edu.cnpostyourresume/AAa)mailto:是一种协议,webmaster@zju.edu.cn是email发送的地址b)mailto:webmaster@zju.edu.cn是邮件被发送的地址c)mailto:webmaster@zju.edu.cn是显示在web网页上的超链接d)以上都不对3.STYLE标记可以出现在Ca)HEAD…/HEAD中b)BODY…/BODY中c)a)和b)都正确d)以上都不正确4.以下代码会生成什么样的Frame结构Chtmlframesetborder=”5”cols=”*,20%”framesetrows=”20%,*”framesrc=”top.html”name=”topFrame”scrolling=”NO”/framesrc=”left.html”name=”leftFrame”//framesetframesrc=”right.html”name=”rightFrame”scrolling=”NO”//frameset/htmla)b)c)d)5.以下HTML代码在浏览器中的显示结果正确的是ATABLEWIDTH=100%BORDER=1BGCOLOR=grayCAPTIONSampletable/CAPTIONTRALIGN=CENTERTDCOLSPAN=2Cell/TDTDCell/TD/TRTRALIGN=CENTERTDROWSPAN=2Cell/TDTDCell/TDTDCell/TD/TRTRALIGN=CENTERTDCell/TDTDCell/TD/TR/TABLEa)SampleTableCellCellCellCellCellCellCellb)SampleTableCellCellCellCellCellCellCellc)SampleTableCellCellCellCellCellCellCelld)SampleTableCellCellCellCellCellCellCell二、简答题:1、简述Web的工作原理答:客户机向服务器发送请求,要求服务器执行某项任务,服务器执行该项任务,并向客户机返回响应。2、什么是HTML,HTML有什么作用答:HTML是一种标记语言。作用是用于描述网页的格式设计和它与互联网上其他网页的连接信息。3、什么是CSS,CSS嵌入到网页中有哪几种方式答:CSS的中文称为层叠样式表,是用于控制网页样式并且允许将样式信息与网页内容分离的一种技术。CSS嵌入到网页中得方式有:1.定义内部样式块对象2.内联定义。4、有以下HTML代码,请说明各单元格的背景颜色tableborder=”2”trbgcolor=”yellow”tdbgcolor=”red”1月/tdtd2月/tdtdbgcolor=”green”3月/td/trtrbgcolor=”gray”tdbgcolor=”red”5月/tdtd6月/tdtdbgcolor=”gree”7月/td/tr/table答:1月绿色2月黑色3月绿色5月绿色6月黑色7月蓝色5、创建一个系统登录的HTML网页,包含一个用户名输入的编辑框、一个密码输入框、一个确认按钮和一个重置按钮答:htmlheadtitle输入窗口/title/headbodyformname=fom1method=get请输入您的用户名inputtype=textname=姓名请输入您的密码inputtype=passwordname=密码inputtype=submitvalue=确认inputtype=resetvalue=重置/form/body/htmlJavascript部分一、选择题1.Javascript中OnChange(D)事件产生于i]Textbox中的内容发生变化ii]Textarea中的内容发生变化iii]选择listbox中的项目iv]选中checkboxa)以上都正确b)只有i]和ii]c)只有i]和iii]d)只有i],ii]和iii]2.有以下HTML代码formname=”form1”action=”sample.jsp”method=”POST”…inputtype=”button”value=”Button1”inputtype=”reset”value=”Button2”onClick=”form1.submit()”/form怎样操作才能向服务器提交数据Ba)点击“Button1”b)点击“Button2”c)a)和b)都可以d)以上都不正确3.以下Javsscript的运行结果为:Avarm=false;if(m==true)document.write(True);elsedocument.write(False);a)Falseb)Truec)Noned)运行时出错二、简答题:1.JavaScript的功能是什么答:JavaScript提供了数据验证的功能,减轻服务器数据处理的负荷,可利用JavaScript进行动态网页的设计。2.写出以下JavaScript代码在浏览器中的显示结果htmlbodyscripttype=text/javascriptdocument.write(Math.round(Math.random()*10))/script/body/html答:43.写出以下JavaScript代码在浏览器中的显示结果ScriptLanguage=JavaScriptfor(i=1;i10;i++){if(i==5)break;for(j=i;j10;j++)document.writeln(i+*+j+=+i*j);document.writeln(br);}/Script答:1*1=11*2=21*3=31*4=41*5=51*6=61*7=71*8=81*9=92*2=42*3=62*4=82*5=102*6=122*7=142*8=162*9=183*3=93*4=123*5=153*6=183*7=213*8=243*9=274*4=164*5=204*6=244*7=284*8=324*9=36ASP及其他一、简答题:1、ASP中有哪些主要对象,功能是什么?答:ASP主要对象有6个,1.Request对象:利用它可以访问任何基于HTTP请求的所有信息2.Response对象:用于控制发给浏览器的信息3.Session对象:用于存储特定的用户会话信息4.Application对象:用于共享应用程序的信息5.Server对象:用于访问服务器上得方法和属性6.ObjectContext对象:用于控制ASP脚本初始化事务2、分析以下ASP程序代码的运行结果%@LANGUAGE=JAVASCRIPT%%Response.Buffer=true%htmlbody%vari;for(i=1;i=5;i++)Response.Write(i+br/);Response.Clear();for(i=6;i=10;i++)Response.Write(i+br/);Response.End();for(i=11;i=15;i++)Response.Write(i+br/);%/body/html答:678910编程:1、编写个人简介网页,能够运用图片、表格等HTML元素,并结合CSS,创建图文并茂的个人资料网页。答:!DOCTYPEHTMLhtmlheadtitlesc.chinaz.com/titlemetaname=descriptioncontent=websitedescription/metaname=keywordscontent=websitekeywords,websitekeywords/metahttp-equiv=content-typecontent=text/html;charset=UTF-8/linkrel=stylesheettype=text/csshref=css/style.css/!--modernizrenablesHTML5elementsandfeaturedetects--scripttype=text/javascriptsrc=js/modernizr-1.5.min.js/script/headbodydivid=mainheaderdivid=logoh1CSS3_ahref=#B&W2/a/h1/divnavulclass=lavaLampWithImageid=lava_menuliclass=currentahref=index.htmlhome/a/liliahref=examples.htmlexamples/a/liliahref=page.htmlapage/a/liliahref=another_page.htmlanotherpage/a/liliahref=contact.phpcontact/a/li/ul/nav/headerdivid=site_contentulclass=slideshowliclass=showimgwidth=950height=350src=images/1.jpgalt="Youcanputacaptionforyourimagerighthere"//liliimgwidth=950height=350src=images/2.jpgalt="Youcanputadescriptionoftheimagehereifyoulike,oranythingelseifyouwant."//liliimgwidth=950height=350src=images/3.jpgalt="Youcanputadescriptionoftheimagehereifyoulike,oranythingelseifyouwant."//li/uldivid=sidebar_containerdivclass=sidebarh3LatestNews/h3h4NewWebsiteLaunched/h4h5January1st,2012/h5p2012seestheredesignofourwebsite.Takealookaroundandletusknowwhatyouthink.br/ahref=#Readmore/a/p/divliimgwidth=950height=350src=images/2.jpgalt="Youcanputadescriptionoftheimagehereifyoulike,oranythi
本文标题:2016Web程序设计离线作业答案
链接地址:https://www.777doc.com/doc-4326235 .html