iframe_browlist.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
  2. <html xmlns="http://www.wk.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>表情列表</title>
  6. <style type="text/css">
  7. <!--
  8. body {
  9. margin-left: 0px;
  10. margin-top: 0px;
  11. margin-right: 0px;
  12. margin-bottom: 0px;
  13. }
  14. -->
  15. </style></head>
  16. <body>
  17. <table width="100%" border="0" align="center">
  18. <%
  19.   int k=3;
  20.   int m = 0;
  21.   int n = 44;
  22.   for (int i=25; i<=n; i++) {
  23.    if (m==0)
  24. out.print("<tr>");
  25.   %>
  26.         <td>
  27. <input type="radio" value="<%=i%>" name="expression" <%if (i==25) out.println("checked");%> onClick="setEmote(this)">
  28. <img src="images/brow/<%=i%>.gif">
  29. </td>
  30.   <%
  31.    m ++;
  32.    if (m==3) {
  33. out.print("</tr>");
  34. m = 0;
  35. }
  36. if (i==44) {
  37. n = 22;
  38. i = 1;
  39. }
  40.   }
  41.   if (m!=3)
  42.    out.print("</tr>");
  43.   %>
  44. </table>
  45. <script>
  46.   function setEmote(emoteObj) {
  47.     window.parent.document.frmAnnounce.expression.value = emoteObj.value;
  48.   }
  49. </script>
  50. </body>
  51. </html>