const.jsp
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. <%!
  2. public static String toHTMLString(String in){
  3.         StringBuffer out = new StringBuffer();
  4.         for (int i = 0; in != null && i < in.length(); i++) {
  5.             char c = in.charAt(i);
  6.             if (c == ''')
  7.                 out.append("&#039;");
  8.             else if (c == '"')
  9.                 out.append("&#034;");
  10.             else if (c == '<')
  11.                 out.append("&lt;");
  12.             else if (c == '>')
  13.                 out.append("&gt;");
  14.             else if (c == '&')
  15.                 out.append("&amp;");
  16.             else if (c == ' ')
  17.                 out.append("&nbsp;");
  18.             else if (c == 'n')
  19.                 out.append("<br/>");
  20.             else
  21.                 out.append(c);
  22.         }
  23.         return out.toString();
  24. }
  25. %>
  26. <%!
  27. public static String toValidString(String in){
  28.         StringBuffer out = new StringBuffer();
  29.         for (int i = 0; in != null && i < in.length(); i++) {
  30.             char c = in.charAt(i);
  31.             if (c == ''')
  32.                 out.append("&#039;");
  33.             //else if (c == '"')
  34.             //    out.append("&#034;");
  35.             else
  36.                 out.append(c);
  37.         }
  38.         return out.toString();
  39. }
  40. %>
  41. <%!
  42. public static String getGBString(String in){
  43. try{
  44. String _p=in;
  45. byte[] _t=_p.getBytes("ISO8859-1");
  46. String _out=new String(_t);
  47. return _out;
  48. }
  49. catch(Exception e){
  50. }
  51. return "null";
  52. }
  53. %>
  54. <script language="javascript">
  55. //AdjustImg('pimg','200','150')
  56. //*************************************************
  57. function AdjustImg(img_obj,w,h){
  58. w=500;
  59. window.setTimeout("i=1",10000);
  60.     oWidth=img_obj.width;
  61. oHeight=img_obj.height;
  62. oRate=oWidth/oHeight;
  63. if (w!=0 && w!=0) {
  64.   nRate=w/h
  65.   if (nRate>oRate) {
  66.     if (w<oWidth) {
  67. img_obj.width=w;
  68. img_obj.height=w/oRate;
  69. }
  70.   } else {
  71.     if (h<oHeight){
  72. img_obj.height=h;
  73. img_obj.width=h*oRate;
  74. }
  75.   }
  76. } else if (w==0) {
  77.   if (h<oHeight) {
  78.   img_obj.height=h;
  79.   img_obj.width=h*oRate;
  80.   }
  81. } else if (h==0) {
  82.   if (w<oWidth) {
  83.   img_obj.width=w;
  84.   img_obj.height=w/oRate;
  85.   }
  86. }
  87. }
  88. </script>