在JSP中,有如下代码,页面运行后将显示( )。 <%@taglib url = "http:jaba.sun.com/jstl/core_rt" prefix="c"%> <%!String[] numbers = {"1","2","3","4"}; %> <BODY> <c:forEach var="numbering" items="<%=numbers%>" step="2" begin="3"> ${numbering} </c:forEach> </BODY>
举一反三
- 在JSP中,有如下代码,页面运行后将显示()。<%@tagliburl="htt...}</c:forEach></BODY>
- 下列指令中,可以导入JSTL核心标签库的是( )。 A: %@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"% B: %!taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"% C: %@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="c"% D: % taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%
- 下列选项可以正确导入JSTL标签库的是( )。 A: <% taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"> B: <% taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"> C: <% taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"> D: <% page prefix="c" uri="http://java.sun.com/jsp/jstl/core">
- 下列代码的输出结果是_______。 A: t;% B: t[] a = new int[] { 1, 2, 3, 4, 5, 6, 7, 8 }; C: geContext.setAttribute("a", a); D: gt; E: t;c:forEach items= ${a} var= i begin= 3 end= 5 step= 2 > F: i } G: t;/c:forEach> H: 1 2 3 4 5 6 7 8 I: 3 5 J: 4 6 K: 4 5 6
- 智慧职教: 给定如下JSP代码,假定在浏览器中输入URL:http://localhost:8080/web/jsp1.jsp,可以调用这个JSP,那么这个 JSP的输出是( )<%@ page contentType="text/html; charset=GBK" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%int counter = 10;%> </c:set></c:if> it’s an odd </c:when>it’s an even </c:otherwise></c:choose></body></html>