Topic: 在JSP中out.println()怎样输出<%=str%> |
Print this page |
1.在JSP中out.println()怎样输出<%=str%> | Copy to clipboard |
Posted by: xuyang821225 Posted on: 2004-08-09 16:23 我试了很多中方法都有错啊 out.println("<td>"+*********+"</td>"); ********号部分应该怎样填写代码啊? |
2.Re:在JSP中out.println()怎样输出<%=str%> [Re: xuyang821225] | Copy to clipboard |
Posted by: kjjx Posted on: 2004-08-10 19:26 去看看 jsp 标签和scriptlet的知识 out.println("<td>"+str+</td>"); 相当于 <td><%= str%></td> |
3.Re:在JSP中out.println()怎样输出<%=str%> [Re: xuyang821225] | Copy to clipboard |
Posted by: flymandl Posted on: 2004-08-11 15:38 或者这样也行 <td><%=str%></td>但是前者要写在<%...%>里面,后者要写在外面。 |
4.Re:在JSP中out.println()怎样输出<%=str%> [Re: xuyang821225] | Copy to clipboard |
Posted by: michaelbeyond Posted on: 2004-08-11 15:55 基本概念不清楚,建议看看书先 out.println();这个是java语法,必须用<%%>括起来 比如 <%out.println("asdfasdf");%> 然后上述星号部分你用变量来输出的话,即象这样的话 <%out.println("<td>" + str + "</td>");%> 那么这个str应该是可以被访问到的变量,否则会编译出错。 自己再试一试看看。 |
5.Re:在JSP中out.println()怎样输出<%=str%> [Re: michaelbeyond] | Copy to clipboard |
Posted by: mannajava Posted on: 2004-08-12 21:34 michaelbeyond wrote: 呵呵,慧眼慧眼。 我乍一看到还真没注意楼主错在这儿. |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |