ASP动态网页设计习题.docx

上传人:b****2 文档编号:1074609 上传时间:2023-04-30 格式:DOCX 页数:26 大小:30.01KB
下载 相关 举报
ASP动态网页设计习题.docx_第1页
第1页 / 共26页
ASP动态网页设计习题.docx_第2页
第2页 / 共26页
ASP动态网页设计习题.docx_第3页
第3页 / 共26页
ASP动态网页设计习题.docx_第4页
第4页 / 共26页
ASP动态网页设计习题.docx_第5页
第5页 / 共26页
ASP动态网页设计习题.docx_第6页
第6页 / 共26页
ASP动态网页设计习题.docx_第7页
第7页 / 共26页
ASP动态网页设计习题.docx_第8页
第8页 / 共26页
ASP动态网页设计习题.docx_第9页
第9页 / 共26页
ASP动态网页设计习题.docx_第10页
第10页 / 共26页
ASP动态网页设计习题.docx_第11页
第11页 / 共26页
ASP动态网页设计习题.docx_第12页
第12页 / 共26页
ASP动态网页设计习题.docx_第13页
第13页 / 共26页
ASP动态网页设计习题.docx_第14页
第14页 / 共26页
ASP动态网页设计习题.docx_第15页
第15页 / 共26页
ASP动态网页设计习题.docx_第16页
第16页 / 共26页
ASP动态网页设计习题.docx_第17页
第17页 / 共26页
ASP动态网页设计习题.docx_第18页
第18页 / 共26页
ASP动态网页设计习题.docx_第19页
第19页 / 共26页
ASP动态网页设计习题.docx_第20页
第20页 / 共26页
亲,该文档总共26页,到这儿已超出免费预览范围,如果喜欢就下载吧!
下载资源
资源描述

ASP动态网页设计习题.docx

《ASP动态网页设计习题.docx》由会员分享,可在线阅读,更多相关《ASP动态网页设计习题.docx(26页珍藏版)》请在冰点文库上搜索。

ASP动态网页设计习题.docx

ASP动态网页设计习题

《ASP动态网页设计》习题

一、填空题

1、网页通常可分为静态网页和____动态____网页,静态网页是由________HTML语言、JAVASCRIPT、VBSCRIPT、JAVAAPPLET(JAVA小应用程序)和所要显示的文本或图形所构成的一个文本文件,其扩展名通常为___html_____或___htm_____,它运行于客户端的___浏览器_____。

2、HTML是一种描述性的__标记性______语言,主要用于组织网页的内容和控制输出格式。

JAVASCRIPT或VBSCRIPT____脚本____语言,常嵌入网页中使用,以实现对网页的编程控制,进一步增强网页的交互性和功能。

3、ASP网页是在HTML网页的基础上,嵌入使用了ASP对象和一些可安装的ACTIVEX组件,并结合VBSCRIPT编程所形成的一种特殊的网页,这种网页的扩展名为___asp_____,它运行于____服务器____运行后将生成标准格式的HTML网页,并将该网页传送给___客户_____端的浏览器,经过浏览器的解释执行,从而呈现出网页的界面来。

4、ASP的WEB服务器可以是___IIS_____或___Apache_____,在商业应用环境中,其WEB服务器通常采用的是___Apache_____。

5、为了将ASP代码与HTML标记符区分开来,ASP代码应用____<%____和__%>______符号将其括起来。

6、ODBC数据源分为__用户数据源______,__系统数据源___和__文件数据源__三种。

其中__文件数据源__数据源是保存在一个特殊的文件中的,文件的扩展名为__dsn_____.

7、ADO除了可用数据源来连接数据库外,还可以通过__ODBC___和__OLEDB___链接字符串来实现对数据库的连接。

8、ADO的三个核心对象是_Connection对象__,_Command对象__和_RecordSet对象__.

9、要创建ODBC数据源,在NTServer,应通过双击控制面板中的__ODBC数据源______图标来实现。

在ODBC数据源中,包含所要连接的__DSN______信息。

11、为了建立与数据库的连接,必须调用连接对象的_connection______方法,连接建立后,可利用连接对象的____execute_____方法来执行SQL语句。

12、关闭连接并彻底释放所占用的系统资源,应调用连接对象的__close____方法,并使用___set___语句来实现。

13、连接对象提供了一组用于事务处理的方法,其中用于开始一个事务的方法是__begintrans__,若命令全部执行成功,需要确认一个事务,则应调用__committrans_____方法:

若要取消一个事务,可通过调用____rollbacktrans_____方法来实现。

14、用于设置连接超时时间的属性是___connectiontimeout________,用于设置SQL语句的最大执行时间的属性是__commandtimeout_______.

15、利用记录集对象向数据表添加记录时,应先调用__addnewupdate_____方法,然后再给各字段赋值,最后再通过调用__update_____方法,来更新记录数据。

16、若要删除记录,可通过记录集对象的__delete_____方法来实现,也可通过___connection____对象执行SQL的___delete_____语句来实现。

17、记录分页显示时,用于决定每个逻辑页面的记录数的属性是_pagesize____,设置该属性后,逻辑页面的个数,可通过__pagecount_属性来获得,通过设置___absolutepage___属性的值,可将记录指针定位到指定页面的首记录。

18、判断记录指针是否到了记录集的末尾的属性是__eof___,向下移动指针,可调用记录集对象的____eofmovenext__方法来实现

21、在Access数据库中,img字段的类型为“OLE对象”,若要获得该字段值的大小,则实现的语句为___request.totalbytes______。

22、假设mydata变量中存储有图形数据,若要将数据以jpg图形格式发送给客户端,则实现的语句为:

response.binarywritemydata_______。

23、若要以二进制方式获取表单所提交的数据,则应调用 ___request__对象的binaryread__方法。

18、若要获得当前记录集的记录条数,可使用__recordset__对象的_____recordcount____属性来实现:

另外,也可通过执行SQL语句____selectcount(字段名)from数据表_____来获得表记录的总数。

24、若要获得数据表中,顺序号为3的字段的名称,则实现的语句为_rs.fields(3).name______。

25、将图形、声音写入OLE对象或image型字段,应调用_response对象的_binarywrite__方法来实现。

26.要指定HTML文件的标题,应该使用(title)标签。

 

27.超链接标签是(a),其中标签的属性(href)用于指定链接的URL信息。

  28.在HTML文档中插入图像使用(img)标签,用(src)属性指定图像的源文件。

  29.超级链接样式定义中,选择(title)是定义鼠标指针停留在文字链接上时文字链接的显示效果。

  30.根据脚本程序被解释执行的地点的不同,可将它们分为(客户端脚本和服务器端脚本)和()。

  32.浏览器对象模型中,window对象的(open)方法用于生成一个新窗口;document对象的(write)方法用于向文档页面中写入内容。

  33.在定义行为时,如果希望当页面被载入后弹出消息对话框,应该选择(onload)事件。

  34.在ASP中,变量可分为(局部变量、全局变量、会话变量和应用程序变量。

)、()、会话变量和应用程序变量。

  35.Form用POST和GET两种方法来提交数据。

用(get)方法时将在浏览器的URL栏中显示所传递变量和变量的值,而(post)方法则不显示。

  36.在ADO对象模型中,()、()和()是三个主要的对象。

在ADO对象模型中,Connection、Command和Rccordset对象是三个主要的对象。

二、单项选择题

<1>一台计算机要能上网,必须在Windows系统中安装(C)协议。

A.NetBeuiB.IPX/SPXC.TCP/IPD.FTP

<2>浏览网页,这属于Internet所提供的(D)服务.

A.FTP服务B.Email服务C.Telnet服务D.WWW服务

<3>Internet上的WWW服务器使用的主要协议是(B).

A.FTPB.HTTPC.SMTPD.TelNet

<4>将制作好的网页上传到Web服务器的过程中,使用不Internet所提供的(A)

A.FTP服务B.Email服务C.Telnet服务D.WWW服务

<5>利用ASP开发的网页,其扩展名应命名为(C)

A..htmB..aspxC..aspD..无严格限制

<6>ASP网页是在(B)执行的。

A.客户端浏览器B.服务器端C.没有定论D.第一次在服务器端,以后客户端

<7>ASP网页的Wed服务器最好采用(A)

A.ApacheB.IISC.Windows98D.WindowsNT

<8>在Windows9x环境中,诺要调试运行ASP网页,此时的Web服务器应选用(A)

A.IIS4.0B.IE浏览器C.PersonalWebServerD.PersonalWebServer

<9>以下标记符中,用于设置页面标题的是(A)

A.B.<caption>C.<head>D.<html></p><p><10>以下标记符中,没有对于的结束标记的是(B)</p><p>A.<body>B.<br>C.<html>D.<title></p><p><11>若要是设计网页的背景图形为bg.jpg,以下标记中,正确的是(A)</p><p>A.<bodybackground=”bg.jpg”></p><p>B.<bodybground=”bg.jpg’’></p><p>C.<bodyimage=”bg.jpg”></p><p>D.<bodybgcolor=”bg.jpg”></p><p><12>若要以标题2号字、居中、红色显示”vbscrip”,以下用法中,正确的是(D)</p><p>A.<h2><divalign=”center”><color=”#ff00000”>vbscript</div></h2></font></p><p>B.<h2><divalign=”center”><fontcolor=”#ff00000”>vbscript</div></h2></font></p><p>C.<h2><divalign=”center”><fontcolor=”#ff00000”>vbscript<</h2>/div></font></p><p>D.<h2><divalign=”center”><fontcolor=”#ff00000”>vbscript</div></font></h2></p><p><13>若要以加粗宋体、12号字显示“vbscript”以下用法中,正确的是(B)_</p><p>A.<b><fontsize=12>vbscript</b></font></p><p>B.<b><fontface=”宋体”size=12>vbscript</b></font></p><p>C.<b><fontsize=“宋体”size=12>vbscript</b></font></p><p>D.<b><fontsize=“宋体”fontsize=12>vbscript</b></font></p><p><14>若要在页面中创建一个图形超;链接,要显示的图形为myhome.jpg,所链接的地址为,以下用法中,正确的是(B);</p><p>A<ahref=””>myhome.jpg</a></p><p>B<ahref=””><imgsrc=”myhome.jpg”></a></p><p>C<imgsrc=”myhome.jpg”><ahref=””></a></p><p>D<ahref=><imgsrc=”myhome.jpg”></p><p><15>以下标记中,用于定义一个单元格的是(A);</p><p>A<td> </td>B<tr>…</tr></p><p>C<table>…</table>d<caption>…</caption></p><p><16>用于设置表格背景颜色的属性的是(B);</p><p>AbackgroundBbgcolorCBorderColorDbackgroundColor</p><p><17>表单对象的名称由(D)属性设定;提交方法由(C)属性指定;若要提交大数据量的数据,则应采用(B)方法;表单提交后的数据处理程序由(F)属性指定。</p><p>AGetBpostCMethodDnameEValueFAction</p><p><18>若要获得名为login的表单中,名为txtuser的文本输入框的值,以下获取的方法中,正确的是(C);</p><p>Ausername=login.txtser.valueBusername=document.txtuser.value</p><p>Cusername=document.login.txtuserCusername=document.txtuser.value</p><p><19>若要产生一个4行30列的多行文本域,以下方法中,正确的是(C)。</p><p>A.<Inputtype=”text”Rows=”4”Cols=”30”Name=”txtintrol”></p><p>B.<TextAreaRows=”4”Cols=”30”Name=”txtintro”></p><p>C.<TextAreaRows=”4”Cols=”30”Name=”txtintro”></TextArea></p><p>D.<TextAreaRows=”30”Cols=”4”Name=”txtintro”></TextArea></p><p><20>用于设置文本框显示宽度的属性是(D)。</p><p>A.SizeBMaxLengthC.ValueD.Length</p><p><21>在网页中若要播放名为demo.avi的动画,以下用法中,正确的是(D)。</p><p>A.<Embedsrc=”demo.avi”autostart=true></p><p>B.<Embedsrc=”demo.avi”autoopen=true></p><p>C.<Embedsrc=”demo.avi”autoopen=true></Embed></p><p>D.<Embedsrc=”demo.avi”autostart=true></Embed></p><p><22>若要循环播放背景音乐bg.mid,以下用法中,正确的是(B)。</p><p>A.<bgsoundsrc=”bg.mid”Loop=”-1”></p><p>B.<bgsoundsrc=”bg.mid”Loop=True></p><p>C.<soundsrc=”bg,mid”Loop=”True”></p><p>D.<Embedsrc=”bg.mid”autostart=true></Embed></p><p><23>以下标记中,用来创建对象的是(A)。</p><p>A.<Object>B.<Embed>C<Form>.D.<Marquee></p><p><24>以下标记中,可用来产生滚动文字或图形的是(B)。</p><p>A.<Scroll>B.<Marquee>C.<TextArea>D.<IFRAME></p><p><25>可用来在一个网页中嵌入显示另一个网页内容的标记符是(B)。</p><p>A.<Marquee>B.<IFRAME>C.<Embed>D.<Object></p><p><26>若要在网页中插入样式表main.css,以下用法中,正确的是(A)。</p><p>A.<Linkhref=”main.css”type=text/cssrel=stylesheet></p><p>B.<LinkSrc=”main.css”type=text/cssrel=stylesheet></p><p>C.<Linkhref=”main.css”type=text/css></p><p>D.<Includehref=”main.css”type=text/cssrel=stylesheet></p><p><27>若要在当前网页中定义一个独立类的样式myText,使具有该类样式的正文字体为”Arial”,字体大小为9pt,行间距为13.5pt,以下定义方法中,正确的是()。</p><p>A.<Style></p><p>.myText{Font-Familiy:</p><p>Arial;Font-size:</p><p>9pt;Line-Height:</p><p>13.5pt}</p><p></style></p><p>B..myText{Font-Familiy:</p><p>Arial;Font-size:</p><p>9pt;Line-Height:</p><p>13.5pt}</p><p>C.<Style></p><p>.myText{FontName:</p><p>Arial;FontSize:</p><p>9pt;LineHeight:</p><p>13.5pt}</p><p></style></p><p>D.<Style></p><p>..myText{FontName:</p><p>Arial;Font-ize:</p><p>9pt;Line-eight:</p><p>13.5pt}</p><p></style></p><p><28>若要使表格的行高为16pt,以下方法中,正确的是()</p><p>A.<tableborder=1style=”Ling-Height:</p><p>16”>…</table></p><p>B.<tableborder=1style=”Ling-Height:</p><p>16pt”>…</table></p><p>C.<tableborder=1LingHeight=16pt”>…</table></p><p>D.<tableborder=1LingHeight=”16pt”>…</table></p><p><29>以下创建mail链接的方法,正确的是(C)</p><p>A.<ahref=”master@”>管理员</a></p><p>B.<ahref=”callto:</p><p>master@”>管理员</a></p><p>C.<ahref=”mailto:</p><p>master@”>管理员</a></p><p>D.<ahref=”Email:</p><p>master@”>管理员</a></p><p><30>要将页面的当前位置定义成名为”vbpos”和锚,其定义方法正确的是(B)</p><p>A.<ahref=:</p><p>vbpos”></a></p><p>B.<ahref=”#vbpos”>vbpos</a></p><p>C.<aname=vbpos></p><p>D.<aname=”vbpos”></a></p><p>(31)在VBScript中,注释采用(B)</p><p>A.//B./*…*/C.’D.”</p><p>(32)若要求VBScript的变量在使用前必须事先定义,则应使用(C)语句来设置.</p><p>A.OptionExplicitB.OptionBase</p><p>C.DimD.ReDim</p><p>(33)可用于计算一个表达式的值的函数是()</p><p>A.Fix()B.Eval()C.Val()D.Round()</p><p>(34)若要将txtdata变量所保存的数据中的单引号替换为双引号,则实现的语句为()</p><p>Replace(txtdata,””,””)B.txtdata=Replace(txtdata,””,”””)</p><p>Replace(txtdata,””,”””)D.txtdata=Replace(txtdata,””,chr(34))</p><p>(35)函数Instr(“xxPPppXXpx”,”pp”)的返回值为(A)</p><p>A.3B.5C.2D.4</p><p>(36)若要获得一周后的日期,可使用(A)函数来实现。</p><p>A.DateAdd()B.DateDiff()C.Date()D.Now</p><p>(37)以下语句用法中,正确的是()。</p><p>A.DimA=10</p><p>IfA>10</p><p>A++</p><p>EndIf</p><p>B.DimA,S</p><p>ForA=1To10</p><p>S=S+A</p><p>Next</p><p>C.DimA</p><p>A=1</p><p>DoWhileA<10</p><p>S=S+A</p><p>A=A+1</p><p>EndDO</p><p>D.DimA,S</p><p>A=1</p><p>Do</p><p>S=S+a</p><p>A=A=a</p><p>LoopWhileA<10</p><p>(38)退出Do循环,应使用的语句是(D)。</p><p>A..ExitB.ExitSubC.ExitForD.ExitDo</p><p>(39)退出函数过程,应使用的语句是(C)。</p><p>ExitB.ExitSubC.ExitFunctionD.Break</p><p>(40)若要定义一个拥有4个成员的数组answer,以下定义方法中,正确的是()。</p><p>A.Dimanswer(5)B.ReDimanswer(5)</p><p>C.Dimanswer(4)D.ReDimanswer(4)</p><p>(41)在ASP中,服务器响应用户浏览器输出信息,要使用(B)对象来实现。</p><p>A.RequestB.ResponseC.ServerD.Session</p><p>(42)服务器端要获得客户端所提交的表单数据,应使用(A)对象来实现。</p><p>A.RequestB.ResponseC.ServerD.Session</p><p>(43)若表单提交的数据中包含着图形,或大数量的文本,此时表单的提交方法应该采用(C)。</p><p>A.GetB.SubmitC.PostD.Resct</p><p>(44)若表单提交时采用的是Get方法,则服务器端要获得表单所提交的数据,应采用(B)语句来实现。</p><p>A.Request.Form(“表单域名”)B.Request.QueryString(“表单域名”)</p><p>C.Response.Form(“表单域名”)D.Response.QueryString(“表单域名”)</p><p>(45)若表单提交时采用的是Post方法,则服务器端要获得表单所提交的数据,应采用(A)语句来实现。</p><p>A.Request.Form(“表单域名”)B.Request.QueryString(“表单域名”)</p><p>C.Response.Form(“表单域名”)D.Response.QueryString(“表单域名”)</p><p>(46)服务器端向客户端输出“注册成功!</p><p>”,以下语句中,能实现该操作要求的是(D)。</p><p>A.Request.write“注册成功!</p><p>”B.Request.write(“注册成功!</p><p>”)</p><p>C.Response.write“注册成功!</p><p>”D.Response.write(“注册成功!</p><p>”)</p><p>(47)用于设置服务器响应的HTTP内容类型,应使用Response对象的(A)属性来实现。</p><p>A.ContentTypeB.Expires</p><p>C.BufferD.Status</p><p>(48)用于设置页面过期的时间为2分钟,以下语句用法中,正确的说法是()。</p><p>Request.Expires=2B.Response.Expires=2</p><p>C.Request.ExpireAbslute=2D.Response.ExpireAbslute=2</p><p>(49)在服务器端,若要将页面导航到index.asp,应使用Response对象的(C)方法来实现。</p><p>A.hrefB.Transfer</p><p>C.RedirectD.Flush</p><p>(50)若要向客户端写入一个名为“username”Click其值为“guest”,1周后过期,则以下实现语句中,正确的是(A)。</p><p>AResponse.Cookies(“username”)=“guest”</p><p>Response.Cookies(“username”).Expires=DateAdd(“ww”,1,Date)</p><p>BResponse.Cookies(“username”)=“guest”</p><p>Response.Cookies(“username”).Expires=DateAdd(“d”,1,Date)</p><p>CResponse.Cookie(“username”)=“guest”</p><p>Response.Cookie(“username”).Expires=DateAdd(“ww”,1,Date)</p><p>DResponse.Cookies(“username”)=“guest”</p><p>Response.Cookies(“username”).Expires=DateAdd(1,“ww”,Date)</p><p>(51)若要获得名为username的Cookie值,以下语句正确的是(A)。</p><p>A.Requst.Cookie(“username”)B.Requst.Cookies(“username”)</p><p>C.Response.Cookie(“username”)D.Response.Cookies(“username”)</p><p>(52)若要获得当前正在执行的脚本所在页</p> </div> <div class="readmore" onclick="showmore()" style="background-color:transparent; height:auto; margin:0px 0px; padding:20px 0px 0px 0px;"><span class="btn-readmore" style="background-color:transparent;"><em style=" font-style:normal">展开</em>阅读全文<i></i></span></div> <script> function showmore() { $(".readmore").hide(); $(".detail-article").css({ "height":"auto", "overflow": "hidden" }); } $(document).ready(function() { var dh = $(".detail-article").height(); if(dh >100) { $(".detail-article").css({ "height":"100px", "overflow": "hidden" }); } else { $(".readmore").hide(); } }); </script> </div> <script> var defaultShowPage = parseInt("20"); var id = "1074609"; var total_page = "26"; var mfull = false; var mshow = false; function DownLoad() { window.location.href='https://m.bingdoc.com/d-1074609.html'; } function relate() { var reltop = $('#relate').offset().top-50; $("html,body").animate({ scrollTop: reltop }, 500); } </script> <div id="relate" class="container" style="padding:0px 0px 15px 0px; margin-top:20px; border:solid 1px #dceef8"> <div style=" font-size: 16px; background-color:#e5f0f7; margin-bottom:5px; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px;">相关资源</div> <div id="relatelist" style="padding-left:5px;"> <ul> <li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-7585950.html" title="网页习题perfect.docx">网页习题perfect.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-14821154.html" title="网页习题perfect.docx">网页习题perfect.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-13219617.html" title="网页设计习题.docx">网页设计习题.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-15619122.html" title="网页设计习题.docx">网页设计习题.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-12824824.html" title="网页设计习题.docx">网页设计习题.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-15236650.html" title="网页设计习题.docx">网页设计习题.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-2154606.html" title="习题3网页制作.docx">习题3网页制作.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-1979706.html" title="网页制作练习题.docx">网页制作练习题.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-4804895.html" title="网页设计复习题.docx">网页设计复习题.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bingdoc.com/p-5127015.html" title="《网页设计》练习题.docx">《网页设计》练习题.docx</a> </li> </ul> </div> </div> <div class="container" style="padding:0px 0px 15px 0px; margin-top:20px; border:solid 1px #dceef8"> <div style=" font-size: 16px; background-color:#e5f0f7; margin-bottom:5px; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px;">猜你喜欢</div> <div id="relatelist" style="padding-left:5px;"> <ul> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015102.html" target="_parent" title="小学四年级数学老师的教学计划Word文档下载推荐.docx">小学四年级数学老师的教学计划Word文档下载推荐.docx</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015103.html" target="_parent" title="通信工程突发事件处置预案各类施工应急措施通信机房及各类故障应急处理Word下载.docx">通信工程突发事件处置预案各类施工应急措施通信机房及各类故障应急处理Word下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015104.html" target="_parent" title="小学五年级口算题卡Word文档下载推荐.docx">小学五年级口算题卡Word文档下载推荐.docx</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015105.html" target="_parent" title="人居环境调研报告Word文件下载.docx">人居环境调研报告Word文件下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015106.html" target="_parent" title="小学信息技术教案第四册Word格式.docx">小学信息技术教案第四册Word格式.docx</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015107.html" target="_parent" title="初中常见化学式及化学方程式大全Word文档下载推荐.docx">初中常见化学式及化学方程式大全Word文档下载推荐.docx</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015108.html" target="_parent" title="服务器负载均衡方案LTMWord格式.docx">服务器负载均衡方案LTMWord格式.docx</a></li> <li><em class="doc"></em> <a href="https://m.bingdoc.com/p-1015109.html" target="_parent" title="中外服装史专升本1文档格式.doc">中外服装史专升本1文档格式.doc</a></li> <li><em class="docx"></em> <a href="https://m.bingdoc.com/p-1015110.html" target="_parent" title="福建高考文综政治命题及试题解读Word文档下载推荐.docx">福建高考文综政治命题及试题解读Word文档下载推荐.docx</a></li> </ul> </div> </div> <div style=" font-size: 16px; background-color:#e5f0f7; margin-top:20px; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px; margin-bottom:10px;"> 相关搜索</div> <div class="widget-box pt0" style="border: none; padding:0px 5px;"> <ul class="taglist--inline multi"> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bingdoc.com/search.html?q=ASP">ASP</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bingdoc.com/search.html?q=%e5%8a%a8%e6%80%81">动态</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bingdoc.com/search.html?q=%e7%bd%91%e9%a1%b5">网页</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bingdoc.com/search.html?q=%e8%ae%be%e8%ae%a1">设计</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bingdoc.com/search.html?q=%e4%b9%a0%e9%a2%98">习题</a></li> </ul> </div> <div style=" font-size: 16px; background-color:#e5f0f7; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px; margin-bottom:10px;"> 资源标签</div> <div class="widget-box pt0" style="border: none; padding:0px 5px;"> <ul class="taglist--inline multi"> <li class="tagPopup"><a class="tag tag0" href="https://m.bingdoc.com/mark/wangyexitiperfect.html" >网页习题perfect</a></li><li class="tagPopup"><a class="tag tag1" href="https://m.bingdoc.com/mark/aspdongtaiwangyesheji.html" >ASP动态网页设计</a></li><li class="tagPopup"><a class="tag tag2" href="https://m.bingdoc.com/mark/wangyeshejijspzidong.html" >网页设计JSP自动</a></li><li class="tagPopup"><a class="tag tag3" href="https://m.bingdoc.com/mark/aspdongtaiwangyefangansheji.html" >ASP动态网页方案设计</a></li><li class="tagPopup"><a class="tag tag4" href="https://m.bingdoc.com/mark/wangyeshejiwangyeshejilianxiti.html" >网页设计网页设计练习题</a></li><li class="tagPopup"><a class="tag tag0" href="https://m.bingdoc.com/mark/jingtaiwangyeshejijingtaiwangyesheji.html" >静态网页设计静态网页设计</a></li><li class="tagPopup"><a class="tag tag1" href="https://m.bingdoc.com/mark/dongtaiwangzhanjiansheaspdongtaiwangzhan.html" >动态网站建设ASP动态网站</a></li><li class="tagPopup"><a class="tag tag2" href="https://m.bingdoc.com/mark/dongtaiwangyesheji.html" >动态网页设计</a></li><li class="tagPopup"><a class="tag tag3" href="https://m.bingdoc.com/mark/dongtaiwangyeshejilunwen.html" >动态网页设计论文</a></li><li class="tagPopup"><a class="tag tag4" href="https://m.bingdoc.com/mark/dongtaiwangyejichu.html" >动态网页基础</a></li><li class="tagPopup"><a class="tag tag0" href="https://m.bingdoc.com/mark/dongtaiwangyeshejikechengsheji.html" >动态网页设计课程设计</a></li> <li class="tagPopup"><a target="_parent" class="tag tag1" href="https://m.bingdoc.com/mark/shejixiti.html">设计习题</a></li> <li class="tagPopup"><a target="_parent" class="tag tag2" href="https://m.bingdoc.com/mark/wangyeshejixitikaoshi.html">网页设计习题考试</a></li> <li class="tagPopup"><a target="_parent" class="tag tag3" href="https://m.bingdoc.com/mark/wangyeshejixitidaan.html">网页设计习题答案</a></li> <li class="tagPopup"><a target="_parent" class="tag tag4" href="https://m.bingdoc.com/mark/wangyeshejifuxiti.html">网页设计复习题</a></li> <li class="tagPopup"><a target="_parent" class="tag tag0" href="https://m.bingdoc.com/mark/wangyeshejiwangyeshejifuxiti.html">网页设计网页设计复习题</a></li> </ul> </div> <br /> <div > 当前位置:<a target="_parent" href="https://m.bingdoc.com/">首页</a> > <a href="https://m.bingdoc.com/booklist-00017.html">小学教育</a><span> > </span><a href="https://m.bingdoc.com/booklist-0001700001.html">语文</a> </div> <br /> <div class="cssnone"> <iframe title="来源" src="https://m.bingdoc.com/BookRead.aspx?id=2TokCxN2UBM%3d&parto=m6Mx%2fhKOjJR5v85eeRiyseIequ2q8GCHNRScKU4ePovYliA5vnSrdT%2byjGpGAJQbP9bseHgPj0N%2b4mboMUDZJW0kZY2x0pPfPSAagVisZkvlOJCuONG8tSUsLs6IRcgIMKYen8iX7DtKp67h90uEbsSZ6xTfv3%2fp2pM6xpgMpFBRBh%2bLhqIGLaBtoy6fAB8QT%2bfIIG0wDVg7X%2bj1yBT1yIrjjTizBSB6" frameborder="0" style="width: 0px; height: 0px"> </iframe> </div> <span id="LabelScript"></span> <script src="https://mstatic.bingdoc.com/JS/bootstrap-collapse.js"></script> </form> <div class="siteInner_bg" style="margin-top: 40px; border: solid 0px red; margin-left: 0px; margin-right: 0px;"> <div class="siteInner"> <p style="text-align: center;">copyright@ 2008-2023 冰点文库 网站版权所有</p><p style="text-align: center;">经营许可证编号:<a href="http://beian.miit.gov.cn/" target="_blank">鄂ICP备19020893号-</a>2</p><script>var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?f82ede2a6dd69d4ed35205d3eb25b840"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script> </div> </div> <div class="trnav clearfix" id="navcontent" style="display: none; background-color:#3a71b1; "> <div class="trlogoside" id="navlogo" style="display: none;"> <a href="https://m.bingdoc.com/" title="冰点文库"><img src="https://www.bingdoc.com/images/logo_bd.png" alt="冰点文库"></a> <div class="trnavclose" id="navclose"> <span></span> </div> </div> <div class="navcontainer"> <div class="row"> <ul class="nav navbar-nav trnavul headercontent" id="navigation" style="margin:20px 0 0px;"> <li><a target="_parent"href="https://m.bingdoc.com/login.aspx">登录</a></li> <li><a target="_parent"href="https://m.bingdoc.com/">首页 </a></li> <li><a target="_parent"href="https://m.bingdoc.com/booklist-0.html">资源分类 </a></li> <li><a target="_parent"href="https://m.bingdoc.com/UserManage/Recharge.aspx?f=0"><img src="https://m.bingdoc.com/images/s.gif" alt="new" class="hottip1">升级会员 <img src="https://www.bingdoc.com/FileUpload/Images/48520fea-bc98-41ae-b183-84689c7075c9.gif" alt="new" class="hottip"></a></li> <li><a target="_parent"href="https://m.bingdoc.com/newslist.html">通知公告 </a></li> <li><a target="_parent"href="https://m.bingdoc.com/h-0.html">帮助中心 </a></li> </ul> </div> </div> </div> <script type="text/javascript"> function stopPropagation(e) { var ev = e || window.event; if (ev.stopPropagation) { ev.stopPropagation(); } else if (window.event) { window.event.cancelBubble = true;//兼容IE } } $("#navmore").click(function (e) { $("#navcontent").show(); $("#navlogo").show(); stopPropagation(e); var navcontentwidth = $("#navcontent").width(); $('#navcontent').css({ 'right': '-' + navcontentwidth + 'px' }); $("#navcontent").show().animate({ "right": 0 }, 300); }); $(document).bind('click', function () { var navcontentwidth = $("#navcontent").width(); $("#navcontent").animate({ 'right': '-' + navcontentwidth + 'px' }, 300, function () { $("#navcontent").hide(); }); $("#navlogo").fadeOut(300); }); $("#navcontent").click(function (e) { stopPropagation(e); }); $("#navclose").click(function (e) { var navcontentwidth = $("#navcontent").width(); $("#navcontent").animate({ 'right': '-' + navcontentwidth + 'px' }, 300, function () { $("#navcontent").hide(); }); $("#navlogo").fadeOut(300); }); </script> <script> function BaseShare(title, desc, imgUrl) { var link = "https://m.bingdoc.com/p-1074609.html"; if (wx) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx3a9604896163fa38', // 必填,公众号的唯一标识 timestamp: '1718648741', // 必填,生成签名的时间戳 nonceStr: 'B056EB1587586B71E2DA9ACFE4FBD19E', // 必填,生成签名的随机串 signature: 'e97e629fbbfa03d0c0dfbd54f007f223e6d696bd',// 必填,签名,见附录1 jsApiList: ['onMenuShareAppMessage', 'onMenuShareTimeline', 'updateAppMessageShareData', 'updateTimelineShareData', 'hideMenuItems'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 //openTagList: ["wx-open-launch-weapp"]//H5打开小程序 }); wx.ready(function () { //需在用户可能点击分享按钮前就先调用 wx.hideMenuItems({// 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3 menuList: ['menuItem:share:qq', 'menuItem:favorite', 'menuItem:share:QZone', 'menuItem:share:email', 'menuItem:originPage', 'menuItem:readMode', 'menuItem:delete', 'menuItem:editTag', 'menuItem:share:facebook', 'menuItem:share:weiboApp', 'menuItem:share:brand'] }); var shareData = { title: title, // 分享标题 desc: desc,//这里请特别注意是要去除html link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgUrl, // 分享图标 }; wx.updateAppMessageShareData(shareData);//1.4 分享到朋友 wx.updateTimelineShareData(shareData);//1.4分享到朋友圈 }); } } function BaseShare(title, desc, imgUrl, link) { if (link=="") link = "https://m.bingdoc.com/p-1074609.html"; if (wx) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx3a9604896163fa38', // 必填,公众号的唯一标识 timestamp: '1718648741', // 必填,生成签名的时间戳 nonceStr: 'B056EB1587586B71E2DA9ACFE4FBD19E', // 必填,生成签名的随机串 signature: 'e97e629fbbfa03d0c0dfbd54f007f223e6d696bd',// 必填,签名,见附录1 jsApiList: ['onMenuShareAppMessage', 'onMenuShareTimeline', 'updateAppMessageShareData', 'updateTimelineShareData', 'hideMenuItems'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 //openTagList: ["wx-open-launch-weapp"]//H5打开小程序 }); wx.ready(function () { //需在用户可能点击分享按钮前就先调用 wx.hideMenuItems({// 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3 menuList: ['menuItem:share:qq', 'menuItem:favorite', 'menuItem:share:QZone', 'menuItem:share:email', 'menuItem:originPage', 'menuItem:readMode', 'menuItem:delete', 'menuItem:editTag', 'menuItem:share:facebook', 'menuItem:share:weiboApp', 'menuItem:share:brand'] }); var shareData = { title: title, // 分享标题 desc: desc,//这里请特别注意是要去除html link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgUrl, // 分享图标 }; wx.updateAppMessageShareData(shareData);//1.4 分享到朋友 wx.updateTimelineShareData(shareData);//1.4分享到朋友圈 }); } } </script> <script> $(document).ready(function () { var arr = $(".headercontent"); for (var i = 0; i < arr.length; i++) { (function (index) { var url = "https://m.bingdoc.com/header.aspx"; $.get(url + "?t=" + (new Date()).valueOf(), function (d) { try { arr.eq(index).empty().html(d); } catch (e) { } try { arr.html(d); } catch (e) { } }); })(i); } }); </script> <script src="https://mstatic.bingdoc.com/js/jquery.lazyload.js"></script> <script charset="utf-8"> $("img.lazys").lazyload({ threshold: 200, effect: "fadeIn" }); </script> </body> </html>