在jsp中,有页面代码如下: <%@page language="java" import="java.util.*” pageEncoding="utf-8"%><%@taglib uri="http:! l java.sun.com/jspljstl/core" prefix="c”%><html> <head></he ad><body> <c:set var="str" value="<font color='red'>helloword! ! !</font>" scope="session"target="javaBean" property="name" / <c :out walue="$ istr} 1></body> </html> 请问,此时页面最终显示结构为()。 (选择―项) A: <font color='red">hellowordl!</font>B:红色字体的helloword!l! helloword!!! C: <font color='red'>hellowordIl!< /font><font color='red'>helloword!l!l </font> D:红色字体的helloword!l!
时间: 2023-12-09 21:05:05 浏览: 95
答案是 B: 红色字体的helloword! ! !。
在页面代码中,使用了JSTL标准标签库中的<c:set>标签来设置一个名为"str"的session作用域的变量,然后将"str"变量的值赋给了一个名为"javaBean"的JavaBean对象的"name"属性。接着,使用<c:out>标签输出了"javaBean"对象的"name"属性值,即"<font color='red'>helloword! ! !</font>"。因此,页面最终显示的结果为红色字体的helloword! ! !。
相关问题
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%> <%@page import="util.Info"%> <%@page import="dao.CommDAO"%> <%@page import="util.PageManager"%>是用来干嘛 的
这是一个 JSP 页面的开头,用于声明页面的编码方式和引入所需要的 Java 类。其中:
- `page language="java"` 表示使用 Java 语言编写 JSP 页面。
- `import="java.util.*"` 表示引入 Java 标准库中的 `java.util` 包。
- `pageEncoding="gb2312"` 表示设置页面的编码方式为 GB2312。
- `page import="util.Info"` 表示引入自定义的 `util.Info` 类。
- `page import="dao.CommDAO"` 表示引入自定义的 `dao.CommDAO` 类。
- `page import="util.PageManager"` 表示引入自定义的 `util.PageManager` 类。
这些声明和引入可以使 JSP 页面中使用相应的 Java 类和方法,方便进行后续的开发。
在jsp中,有页面代码如下: <%@page language="java" import="java.util.*" pageEncoding="utf-8"%><%@taglib uri="http:l l java.sun.com/jspljstllcore" prefix="c”%><htm1> <head></head><body> <c: set var="str" value="<font color='red'>helloword! ! !</font>" scope="session" 1> <e :out value="$ {str}" escapeXml="false" /> </body> </html> 请问,此时页面最终显示结果为( )。 (选择一项) A: <font color='red'>helloword!!!</font>B:红色字体的helloword!!! c: null D:没有任何显示
A: <font color='red'>helloword!!!</font>。在页面代码中,使用<c:set>标签将字符串"<font color='red'>helloword! ! !</font>"存储在了session作用域中,变量名为str。然后,使用<c:out>标签输出了变量str的值,由于escapeXml属性设置为false,因此会将helloword前后的HTML标签解析为真正的标签,最终会在页面上显示为红色字体的helloword!!!。
阅读全文