ViewPhoto.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <html>
  2. <head>
  3. <title>图片浏览</title>
  4. <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
  5. <script>
  6. function Request(sName)
  7. {
  8. /*
  9. get last loc. of ?
  10. right: find first loc. of sName
  11. +2
  12. retrieve value before next &
  13. */
  14. var sURL = new String(window.location);
  15. var iQMark= sURL.lastIndexOf('?');
  16. var iLensName=sName.length;
  17. //retrieve loc. of sName
  18. var iStart = sURL.indexOf('?' + sName +'=') //limitation 1
  19. if (iStart==-1)
  20. {//not found at start
  21. iStart = sURL.indexOf('&' + sName +'=')//limitation 1
  22. if (iStart==-1)
  23. {//not found at end
  24. return 0; //not found
  25. }
  26. }
  27. iStart = iStart + + iLensName + 2;
  28. var iTemp= sURL.indexOf('&',iStart); //next pair start
  29. if (iTemp ==-1)
  30. {//EOF
  31. iTemp=sURL.length;
  32. }
  33. return sURL.slice(iStart,iTemp ) ;
  34. sURL=null;//destroy String
  35. }
  36. </script>
  37. </head>
  38. <body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>
  39. <table width='100%' cellpadding="0" cellspacing="0">
  40. <tr>
  41. <td align='center' valign='middle'>
  42. <script>
  43. if(Request("url")!=0){
  44. document.write("<img name=\"images1\" src=\""+Request("url")+"\" border=0 class=\"picborder\" ><input type='hidden' name='PhotoUrl' value='"+Request("url")+"'><div id='hiddenPic' style='position:absolute; left:0px; top:0px; width:100px; height:100px; z-index:-1; visibility: hidden;'><img name='images2' src='"+Request("url")+"' border='0'></div>");
  45. }
  46. </script>
  47. </td>
  48. </tr>
  49. </table>
  50. </body>
  51. </html>