就是在浏览器中输入http://localhost:8080/jsp/index.jsp jsp就是我自己定义的哪个目录
结果呢只能有html下的欢迎进入几个汉字 其他的 jsp代码一句也没执行呢
<%@ page language="java" %> <%@ page contentType="text/html; charset=GB2312"%> <html> <head> <title>Hello World</title> <meta http-equiv="Content-Type" content="content=text/html; charset=gb2312"> </head> <body bgcolor="#FFFFFF"> <center> <font size= 5 color=blue>多种字体大小显示</font> <center> <br> <hr> <br> <div align="center"> <% //控制文字大小的循环语句 for( int i=1; i<=6; i++ ) out.println( "<h" + i + ">Hello World!</h" + i + ">" ); %> </div> </body> </html>
上面这个就只会在浏览器中显示:多种字体大小显示 其他的就什么也没有了呢,请问是什么原因呀