jsp试题.docx

上传人:b****5 文档编号:3800743 上传时间:2022-11-25 格式:DOCX 页数:25 大小:25.68KB
下载 相关 举报
jsp试题.docx_第1页
第1页 / 共25页
jsp试题.docx_第2页
第2页 / 共25页
jsp试题.docx_第3页
第3页 / 共25页
jsp试题.docx_第4页
第4页 / 共25页
jsp试题.docx_第5页
第5页 / 共25页
点击查看更多>>
下载资源
资源描述

jsp试题.docx

《jsp试题.docx》由会员分享,可在线阅读,更多相关《jsp试题.docx(25页珍藏版)》请在冰豆网上搜索。

jsp试题.docx

jsp试题

[题型]:

单选题

第1题.自定义标签的配置文件放在

A.WebRoot

B.lib

C.classes

D.WEB-INF

答案:

D

[题型]:

单选题

在J2EE中,重定向到另一个页面,以下()语句是正确的

A.request.sendRedirect(“http:

svse.com.cn”);

B.request.sendRedirectt();

C.response.sendRedirect(“svse.com.cn”);

D.response.sendRedirect();答案:

C

[题型]:

单选题

EL表达式,${10mod3},执行结果为:

A.10mod3

B.1

C.3

D.null

答案:

B

[题型]:

单选题

在JSP页面中,能够完成输出操作的内置对象是

A.out

B.response

C.request

D.config

答案:

A

[题型]:

单选题

2个客户会看到浏览器显

给定以下JSP代码片段,有2个客户依次浏览该JSP;且每个客户只浏览一次,第示()。

<%intx=1;%>

<%!

intx=10;%>

X=<%=x%>

A.x=1

B.x=2

C.x=10

D.x=11

答案:

A

如果只希望在多个页面间共享数据,可以使用作用域

A.request,session

B.applicationsession

C.request,application

D.pageContextrequest答案:

A

[题型]:

单选题

("user","svse");

("user","bob");

使用{user}则显示

A.null

B.svse

C.bob

D.啥也没有

答案:

B

[题型]:

单选题

考虑下面JSP文件代码片断:

paramname=”username”value=”svse”/>

include>

以下()代码片断放置在中不会导致错误

A.

getParamname=”username”/>

B.

includeparam=”username”/>

C.<%=(“username”)%>

D.<%=(“username”)%>

答案:

C

[题型]:

单选题

在HTTP协议中,用于发送大量数据的方法是

A.get

B.post

C.put

D.options

答案:

B

[题型]:

单选题

J2EE中,()类型的()方法用于得到会话

A.HttpServletRequest、getSession

B.HttpServletResponse、newSession

C.HtttpSession、newInstance

D.HttpSession、getSession答案:

A

[题型]:

单选题

MVC中的MVC分别用、、表示

A.jspservletjavabean

B.HTmljavabeanjsp

C.javabeanjspservlet

D.servlethtmljsp答案:

C

看到这里了

[题型]:

单选题

("user","tom");

("user","bob");

显示"bob",则可以使用

A.{("user")}

B.{}

C.{user}

D.{}

答案:

D

[题型]:

单选题

<%

Stringcount="100";

("cnt",count);

%>

Count:

{100}显示为

A.100100

B.运行异常

C.200

D.没有任何显示

答案:

C

[题型]:

单选题

在JSP中,只有一行代码:

V%=AB%>运行将输出

A.AB

B.AB

C.113

D.没有任何输出,因为表达式是错误的

答案:

D

[题型]:

单选题

在J2EE中,假如HttpSession的getLastAccessTime()方法返回值为x,getCreationTime()方法返回值为

y,则为x-y()

A.两个连续请求之间间隔的最长时间

B.最近的两个连续请求之间的时间间隔

C.最后使用session发送请求的时间和session创建时间的间隔

D.最后使用session发送请求的时间

答案:

C

[题型]:

单选题

Jsp中有如下代码:

<%

Cookiec=newCookie(“name”,“admin”);

(10000);

(c);

%>

以下哪句代码可以正确显示”admin”

A.${}

B.${${name}

D.${}

答案:

B

[题型]:

单选题

以下()可用于检索session属性userid的值

A.session.getAttribute(“userid”);

B.session.setAttribute(“userid”);

C.request.getParameter(“userid”);

D.request.getAttribute(“userid”);

答案:

A

[题型]:

单选题

文件中有如下一行代码:

一・f・I””””I””

useBeanid=”user”scope=”__”class=””>要使user对象可以作用于整个应用程序,下划线中应添入()

A.page

B.request

C.session

D.application

答案:

D

[题型]:

单选题

JSP中有三大类标签,分别是

A.HTML标记JSP标记Servlet标记

B.CSS标记HTML标记Javascript标记

C.动作标记脚本标记指令标记

D.指令标记脚本标记HTML标记

答案:

C

[题型]:

单选题

在JSP中,只有一行代码:

${1+2},运行将k输出()

A.1+2

B.3

C.null

D.没有任何输出,因为表达式是错误的答案:

B

[题型]:

单选题

下面方法可以返回当前请求的请求方式

A.()

B.()

C.()

D.()

答案:

C

[题型]:

单选题

只能够传递字符串类型数据的方式是

A.表单URL重写

B.session对象表单

C.隐藏域setParameter方法

D.都可以答案:

A

[题型]:

单选题

某JSP中有如下代码:

<%

/a”””、

(“a”,”page”);

/“””丄”\

(“a”,”request”);

/“””•”、

(“a”,”session”);

(“a”,”application”);

%>

有:

${a}

则显示结果为:

A.page

B.request

C.session

D.application

答案:

A在WEB项目的共享数据范围内,application是范围最广泛的

B.当我们在一个JSP页面新开窗口时,新开窗口的页面也共享session范围内的数据

C.当在JSP页面中通过指令将页面请求转发到的页面中,可以共享一个page范围内的数据

D.当用户重新打开一个浏览器窗口时,原session对象不再有效

答案:

C

[题型]:

单选题

下面关于JSP作用域对象的说法错误的是

A.request对象可以得到请求中的参数

B.session对象可以保存用户信息

C.application对象可以被多个应用共享

D.作用域范围从小到达是request、session、application

答案:

C

[题型]:

单选题

以下代码能否编译通过,假如能编译通过,运行时得到什么输出结果()<%

("count",newInteger(0));

Integercount=("count");

%>

<%=count%>

A.编译不通过

B.可以编译运行,输出0

C.编译通过,但运行时抛出ClassCastException

D.可以编译通过,但运行无输出

答案:

A

[题型]:

单选题

有,代码如下

<%

Gamegame=("gameEntity");

%>

<%=()%>

在浏览器中输入,出现500错误,报出异常为NullPointerException造成该问题的原因可能是

A.jsp文件路径不对

B.game对象没有用new初始化

C.getGameName()方法未定义

D.参数名称所代表的对象在请求中根本就不存在

答案:

D

[题型]:

单选题

现在session中没有任何属性,阅读下面2个JSP中的代码,将分别输出()

<%

("svse"));

%>

<%

();

("svse"));

%>

A.null,异常信息

B.null,null

C.异常信息,异常信息

D.异常信息,null

答案:

A

[题型]:

单选题

Http协议的状态码()表示文件没有创建

A.200

B.400

C.500

D.404

答案:

D

[题型]:

单选题

在WEB应用中,数据传递的默认编码是

A.ISO-8859-1

B.UTF-8

C.GBK

D.UNICODE

答案:

A

[题型]:

单选题

从HTTP请求中,获得请求参数,应该调用

A.request对象的getAttribute()方法

B.request对象的getParameter()方法

C.session对象的getAttribute()方法

D.session对象的getParameter()方法

答案:

B

[题型]:

单选题

null

J2EE中,HttpServletRequest类的()方法用返回与当前请求相关联的会话,如果没有,则返回

A.getSession()

B.getSession(true)

C.getSession(false)

D.getSession(null)

答案:

C

[题型]:

单选题

在JSP中,对标记描述正确的是()

A.和必须在一个JSP文件中搭配出现

B.就如同()一样,来设计属性/值对

C.和动作一起使用,来设置bean的属性值

D.就如同()一样,来设置属性/值对

答案:

C

文件如下:

<%("ABC");%>

Bufferis<%=buffer%>

试图运行时,将发生()

A.编译期错误

B.编译Servlet源码时发生错误

C.运行Servlet时发生错误

D.运行后,浏览器上显示:

bufferisABC.

答案:

A

[题型]:

单选题

message

对这段配置描述正确的是

A.定义了一个message标签,有一个属性叫name

B.配置了一个名字为message的标签,该名称对应到类,并且标签不允许有主体内容,使用标签时有一个

必须得属性为name

C.声明了一个名字为message的标签,该标签对应到MessageTag类,并且标签没有主体内容

D.标签配置错误,主体不能为空

答案:

B

[题型]:

单选题

publicclassWriterimplementsTagSupport{

(1)

protectedintdoStartTag(){SKIP_BODY}

(2)

publicintdoEndTag(){returnEVAL_PAGE}(3)

}

有问题的语句是

A.23

B.3

C.123

D.12答案:

D

[题型]:

单选题

支持中文的常用字符集有

A.UTF-8GBKZH23BIG5

B.ISO-8859-1MS950

C.UTF-8GBKGB2312BIG5

D.UTF-16ANSISQL答案:

C

[题型]:

单选题

application对象是,而session对象则是

A.服务器的一个数据空间,可以让服务器中的所有应用共享数据与用户的请求有关

B.应用程序上下文,它允许数据在同一应用程序中的任何Web组件共享每个客户专用的

C.存放所有的请求中数据存放会话中的所有数据

D.HttpApplication类型保存用访问应用期间的私有数据

答案:

B

在J2EE中,以下对RequestDispatcher描述正确的是

A.Jsp中有个隐含的对象diapatcher,它的类型是RequestDispatcher

B.ServletConfig有一个方法:

getRequestDispatcher可以返回RequestDipatcher对象

C.RequestDipatcher有一个方法:

forward可以把请求继续传递给别的Servlet或者JSP界面

D.JSP中有个隐含的默认对象request,它的类型是RequestDipatcher

答案:

C

[题型]:

单选题

关于MVC模式说法正确的是

A.用来将代码分开的方法

B.将显示、流程控制、业务逻辑分开,提高维护性和分离复杂度

C.视图模型控制器模型

D.只用java才有的模型

答案:

B

[题型]:

单选题

在JSP页面中,类型为HttpServletResponse的内置对象是

A.out

B.response

C.request

D.config

答案:

B

[题型]:

单选题

在JSP页面中,保存数据的范围由小到大依次是

A.pageContext,request,application,session

B.pageContext,application,session,request

C.pageContext,request,session,application

D.pageContext,session,request,application

答案:

C

[题型]:

单选题

http是一个()协议

A.无状态

B.有状态

C.状态良好的

D.局域网

答案:

A

[题型]:

单选题

使用GET方式提交数据,接收数据时,处理中文最直接有效方式为

A.("utf-8");

B.("text/html;charset=utf-8");

C.Stringname=newString("name").getBytes("ISO-8859-1"),"gbk");

D.("gbk");

答案:

C

[题型]:

单选题

在JSP页面中,正确引入JavaBean的是()

A.<%jsp:

useBeanid=”myBean”scope=”page”class=””%>

B.

useBeanname=”myBean”scope=”page”class=””>

C.

useBeanid=”myBean”scope=”page”class=””/>

D.

useBeanname=”myBean”scope=”page”class=””/>答案:

C

[题型]:

单选题

Tomcat的端口号可以在文件中修改

A.

B.

C.

D.不能改

答案:

A

[题型]:

单选题

bean的一个

给定TheBean类,假设还没有创建TheBean类的实例,以下哪些JSP标准动作语句能创建这个

新实例,并把它存储在请求作用域

A.

useBeanname="myBean"type=""/>

B.

takeBeanname="myBean"type=""/>

C.

useBeanid="myBean"class=""scope="request"/>

D.

takeBeanid="myBean"class=""scope="request"/>答案:

C

[题型]:

单选题

有三个JSP文件如下

user=svse">To

<%Stringuser=("user");%>

<%=("user")%>页面中输出

A.报错

B.什么都没有

C.null

D.svse

答案:

D

[题型]:

单选题

A.<%@pageLanguage=“Java”,import=”.*;.*”%”>

B.<%@pagelanguage=“Java”import=”.*;.*”%”>

C.<%@pagelanguage=“Java”;import=”.*;.*”%”>

D.<%@pagelanguage=“Java”import=”.*,.*”%>答案:

D

[题型]:

单选题

下面关于MVC的说法不正确的是

A.M表示Model层,是存储数据的地方

B.View表示视图层,负责向用户显示外观

C.Controller是控制层,负责控制流程

D.在MVC架构中jsp通常做控制层

答案:

D

[题型]:

单选题

给定代码片断,如下:

要在中输出参数color中的值,以下选项正确的是()

A.<%=(“color”)%>

B.<%=(“color”)%>

C.

getParamname=”color”/>

D.

includeparam=”color”/>答案:

A

[题型]:

单选题

在JSP中,给定以下JSP代码片段,运行结果是()。

<%intx=5;%>

<%!

intx=7;%>

<%!

IntgetX(){

returnx;

}

%>

<%(“X1=”x);%>

<%(“X2=”getX());%>

A.X1=5X2=7

B.X1=5X2=5

C.X1=7X2=7

D.X1=7X2=5

答案:

A

[题型]:

单选题

目录是放()文件的

在WEB应用程序的目录结构中,在WEB-INF文件夹中的lib

A..jsp文件

B..class文件

C..jar文件

D.文件

答案:

C

[题型]:

单选题

以下代码执行效果为:

()

<%

/a”””、

(“a”,”svse”);

%>

1}”>

A.a

B.svse

C.2>1

D.null

答案:

B

[题型]:

单选题

按作用域从大到小排列正确的是

A.applicationpagerequestresponse

B.sessionpageContextrequestapplication

C.publicapplicationsessionrequest

D.applicationsessionrequestpageContext答案:

D

<%

Stringname=("uname");

%>

横线处使用什么代码可以将name的值显示在页面

A.(name);

B.<%().print(name)%>

C.<%=name%>

D.

name

答案:

C

[题型]:

单选题

在JSP中,<%="1+4"%>将输出

A.1+4

B.5

C.14

D.不会输出,因为表达式是错误的

答案:

A

[题型]:

单选题

jsp最终被运行的是

A.一个java文件

B.一个class文件

C.一个HTML

D.一个JSP

答案:

B

[题型]:

单选题

在JSP中,以下是有关和标记的描述,正确的是()

A.和标记都必须在的开始标记和结束标记之间

B.这两个标记的name属性的值必须和标记的id属性的值相对应

C.和标记可以用于对bean中定义的所有属性进行选择和设置

D.这两个标记的name属性的值可以和标记的id属性的值不同

答案:

B

[题型]:

单选题

在WEB应用程序的目录结构中,在WEB-INF文件夹外的文件为

A..jsp文件

B..class文件

C..jar文件

D.文件

答案:

A

下列哪个类是抽象类

A.ServletConfig

B.HttpServlet

C.Cookie

D.HttpServletRequest

答案:

B

[题型]:

单选题

在JSP中,page指令的()属性用来引入需要的包或类

A.extends

B.import

C.languge

D.contentType

答案:

B

[题型]:

单选题

{}

B.{name}

C.{}

D.{("name")}

答案:

A

[题型]:

单选题

{empty?

"Administrator":

}说法正确的是

A.编译时出错,不支持该语法

B.如果参数user为空则返回Administrator否则就返回user的值

C.如果参数user为空字符则返回Administrator否则就返回user的值

D.如果参数user为空则返回user否则就返回Administrator的值

答案:

B

[题型]:

单选题

Page指令用于定义JSP文件中的全局属性,下列关于该指令用法的描述不正确的是:

()

A.<%@page%>作用于整个JSP页面。

B.可以在一个页面中使用多个<%@page%指>令。

C.为增强程序的可读性,建议将<%@page%指令放在JSP文件的开头,但不是必须的

D.<%@page%>指令中的属性只能出现一次。

答案:

D

[题型]:

单选题

对于声明语法<%!

%>的说法错误的是:

()

A.一次可声明多个变量和方法,只要以“;”结尾就行

B.—个声明仅在一个页面中有效

C.声明的变量将作为局部变量

答案:

c

[题型]:

判断题

的缩写。

1、HTML称为超文本元素语言,它是HypertextMarkedLanguage

答案:

正确

[题型]:

判断题

2、一个HTML文档必须有和元素。</p><p>答案:</p><p>错误</p><p>[题型]:</p><p>判断题</p><p>3、超级链接不仅可以将文本作为链接对象,也可以将图像作为链接对象。</p><p>答案:</p><p>正确</p><p>[题型</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("5"); var id = "3800743"; var total_page = "25"; var mfull = false; var mshow = false; function DownLoad() { window.location.href='https://m.bdocx.com/down/3800743.html'; } function relate() { var reltop = $('#relate').offset().top-50; $("html,body").animate({ scrollTop: reltop }, 500); } </script> <script> var pre = "https://file1.bdocx.com/fileroot1/2022-11/25/549076a3-b6f6-41ce-993d-fda35b9642f6/549076a3-b6f6-41ce-993d-fda35b9642f6"; var freepage = parseInt('20'); var total_c = parseInt('25'); var start = defaultShowPage; var adcount = 0; var adindex = 0; var adType_list = ";0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;"; var end = start; function ShowSvg() { end = start + defaultShowPage; if (end > freepage) end = freepage; for (var i = start; i < end; i++) { var imgurl = pre + (i + 1) + '.gif'; var html = "<img src='" + imgurl + "' onerror=\"this.src='/images/s.gif'\" alt=\"jsp试题.docx_第" + (i + 1) + "页\" width='100%'/>"; $("#page").append("<div class='page'>" + html + "</div>"); $("#page").append("<div class='pageSize'>第" + (i + 1) + "页 / 共" + total_c + "页</div>"); if(adcount > 0 && adType_list.indexOf(";"+(i+1)+";")>-1) { if(adindex > (adcount-1)) adindex = 0; $("#page").append("<div class='pagead' id='addiv"+(i + 1)+"'></div>"); document.getElementById("addiv"+(i + 1)+"").innerHTML =document.getElementById("adpre" + adindex).outerHTML; adindex += 1; } } start = end; if (start > (freepage - 1)) { if (start < total_c) { $("#pageMore").removeClass("btnmore"); $("#pageMore").html("亲,该文档总共" + total_c + "页,到这儿已超出免费预览范围,如果喜欢就下载吧!"); } else { $("#pageMore").removeClass("btnmore"); $("#pageMore").html("亲,该文档总共" + total_c + "页全部预览完了,如果喜欢就下载吧!"); } } } //$(document).ready(function () { // ShowSvg(); //}); </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.bdocx.com/doc/30856930.html" title="小学语文1-6年级作文写作指导.docx">小学语文1-6年级作文写作指导.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856929.html" title="1-6年级小学语文作文常考主题好词好句汇总.docx">1-6年级小学语文作文常考主题好词好句汇总.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856928.html" title="小学资料:语文基础知识总结.docx">小学资料:语文基础知识总结.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856927.html" title="小学语文复习资料:100副春节对联.docx">小学语文复习资料:100副春节对联.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856926.html" title="五年级语文下册第4课《梅花魂》同步练习3份.docx">五年级语文下册第4课《梅花魂》同步练习3份.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856925.html" title="小学语文各种题型汇总.docx">小学语文各种题型汇总.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856924.html" title="小学语文五年级下册第5课《草船借箭》知识点.docx">小学语文五年级下册第5课《草船借箭》知识点.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856923.html" title="小学语文必会基础知识:关联词8大句型及重难点详解附练习.docx">小学语文必会基础知识:关联词8大句型及重难点详解附练习.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856922.html" title="小学语文资料之人体各部位成语大全.docx">小学语文资料之人体各部位成语大全.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30856921.html" title="小学语文多音字 “顺口溜” 速记108个小学常用汉字.docx">小学语文多音字 “顺口溜” 速记108个小学常用汉字.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.bdocx.com/doc/26376.html" target="_parent" title="专业技术人员继续教育试题及答案合集.docx">专业技术人员继续教育试题及答案合集.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26377.html" target="_parent" title="小学四五六年级阅读系统复习.docx">小学四五六年级阅读系统复习.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26378.html" target="_parent" title="小学二年级趣味智力题.docx">小学二年级趣味智力题.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26379.html" target="_parent" title="企业隐患排查治理检查自查记录表.docx">企业隐患排查治理检查自查记录表.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26380.html" target="_parent" title="装表接电实训基地建设方案1.docx">装表接电实训基地建设方案1.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26381.html" target="_parent" title="西交学期《护理学导论》作业考核试题.docx">西交学期《护理学导论》作业考核试题.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26382.html" target="_parent" title="小学一年级必读古诗75首带拼音复习过程.docx">小学一年级必读古诗75首带拼音复习过程.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26383.html" target="_parent" title="小学新起点英语二年级下册教案.docx">小学新起点英语二年级下册教案.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/26384.html" target="_parent" title="浅谈幼儿学习英语的兴趣培养与规划.docx">浅谈幼儿学习英语的兴趣培养与规划.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.bdocx.com/search.html?q=jsp">jsp</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=%e8%af%95%e9%a2%98">试题</a></li> </ul> </div> <br /> <div > 当前位置:<a target="_parent" href="https://m.bdocx.com/">首页</a> > <a href="https://m.bdocx.com/booklist-00017.html">小学教育</a><span> > </span><a href="https://m.bdocx.com/booklist-0001700001.html">语文</a> </div> <br /> <div class="cssnone"> <iframe title="来源" src="https://m.bdocx.com/BookRead.aspx?id=WEkOzYoq0Nc%3d&parto=nIgS4OBEM0BF4NnWY%2b0loNyr3aee%2f2WxpJiWRUIQ3RJRD7FxPaBXE5R2Xo3G579uked10hwTkAhOyUtN7C235rWdQUdlhl1olmB4Et6ULUB%2fzmTn0FkbahUZiTPGD%2bC%2bRjUN%2fluO7dYVTqg2l6n5xp46uuvINsIRRUuvroHFIzFbfrDcbCuoiMWTp0XEn%2fwndgOAfe80ZegiH%2fkXDrf6YeCZFX4x2uh8" frameborder="0" style="width: 0px; height: 0px"> </iframe> </div> <span id="LabelScript"></span> <script src="https://mstatic.bdocx.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-2022 冰豆网网站版权所有</p><p style="text-align: center;">经营许可证编号:<a href="http://beian.miit.gov.cn/" target="_blank">鄂ICP备2022015515号-1</a></p><script>var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?2e77bd3f6fe91b0e21d3f22267249ee3"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script><script>(function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?81476e42bf626128cf29544ee216a8ed7deb9487dce7ed62313212129c4244a219d1c501ebd3301f5e2290626f5b53d078c8250527fa0dfd9783a026ff3cf719"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window)</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.bdocx.com/" title="冰豆网"><img src="https://www.bdocx.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.bdocx.com/login.aspx">登录</a></li> <li><a target="_parent"href="https://m.bdocx.com/">首页 </a></li> <li><a target="_parent"href="https://m.bdocx.com/booklist-0.html">资源分类 </a></li> <li><a target="_parent"href="https://m.bdocx.com/UserManage/Recharge.aspx?f=0"><img src="https://m.bdocx.com/images/s.gif" alt="new" class="hottip1">升级会员 <img src="https://www.bdocx.com/FileUpload/Images/48520fea-bc98-41ae-b183-84689c7075c9.gif" alt="new" class="hottip"></a></li> <li><a target="_parent"href="https://m.bdocx.com/newslist.html">通知公告 </a></li> <li><a target="_parent"href="https://m.bdocx.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.bdocx.com/doc/3800743.html"; if (wx) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx4f717640abfd1120', // 必填,公众号的唯一标识 timestamp: '1719696694', // 必填,生成签名的时间戳 nonceStr: 'E46DE7E1BCAACED9A54F1E9D0D2F800D', // 必填,生成签名的随机串 signature: 'ade8147e60546af0bc1aa65c5d3035073c3daa50',// 必填,签名,见附录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.bdocx.com/doc/3800743.html"; if (wx) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx4f717640abfd1120', // 必填,公众号的唯一标识 timestamp: '1719696694', // 必填,生成签名的时间戳 nonceStr: 'E46DE7E1BCAACED9A54F1E9D0D2F800D', // 必填,生成签名的随机串 signature: 'ade8147e60546af0bc1aa65c5d3035073c3daa50',// 必填,签名,见附录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.bdocx.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.bdocx.com/js/jquery.lazyload.js"></script> <script charset="utf-8"> $("img.lazys").lazyload({ threshold: 200, effect: "fadeIn" }); </script> </body> </html>