本帖最后由 抽烟男孩 于 2013-5-28 08:23 编辑
在jsp页面中写下如下代码,- <%
- String str = "yes";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head><title>My JSP 'index.jsp' starting page</title>
- <script type="text/javascript">
- function test(){
- <%if(str.equalsIgnoreCase("yes")){%>
- alert("yes");
- <%} else{%>
- alert("no");
- <% } %>
- }
- </script>
- </head>
- <body>
- <BUTTON onclick="test()" >
- 测试
- </BUTTON>.
- </body>
- </html>
复制代码 但是没有任何反应。
|
|