返回列表 发帖

怎么在页面加一个在线FTP登陆

演示:点这里查看!
  1. <script janguage="javascript">
  2. <!--
  3. // Title: JavaScript - FTP log-on script

  4. function goFtpSite() {
  5. document.location.href = "ftp://" + document.ftp.login.value + ":" + document.ftp.password.value + "@" + document.ftp.url.value;
  6. }

  7. //-->
  8. </script>

  9. <body>
  10. <form name="ftp">
  11. <table border="0" cellpadding="1" cellspacing="1" bgcolor="#000000" align="center">
  12. <tr>
  13. <td>
  14. <table border="0" cellspacing=0 cellpadding=5 align="center">
  15. <tr bgcolor="#bbbbbb">
  16. <td width="75" align="right" bgcolor="#FFCC66">
  17. <font face="arial,helvetica" size="-1">
  18. Ftp://
  19. </font>
  20. </td>
  21. <td bgcolor="#FFCC66">
  22. <font face="arial,helvetica" size="-1">
  23. <input name="url" type="text" value="www.czgwnn.cn" size=15>
  24. </font>
  25. </td>
  26. </tr>
  27. <tr bgcolor="#dddddd">
  28. <td align="right" bgcolor="#FFE98E">
  29. <font face="arial,helvetica" size="-1">
  30. Login:
  31. </font>
  32. </td>
  33. <td bgcolor="#FFE98E">
  34. <font face="arial,helvetica" size="-1">
  35. <input type="text" size="15" name="login" maxlength="20">
  36. </font>
  37. </td>
  38. </tr>
  39. <tr bgcolor="#bbbbbb">
  40. <td align="right" bgcolor="#FFCC66">
  41. <font face="arial,helvetica" size="-1">
  42. Password:
  43. </font>
  44. </td>
  45. <td bgcolor="#FFCC66">
  46. <font face="arial,helvetica" size="-1">
  47. <input type="password" size="15" name="password" maxlength="20">
  48. </font></td>
  49. </tr>
  50. <tr bgcolor="#ffffff">
  51. <td colspan="2" align="center">
  52. <font face="arial,helvetica" size="-2">
  53. <input type=button onclick="goFtpSite();" value="进入">
  54. <input type=reset value="清除">
  55. </font>
  56. </td>
  57. </tr>
  58. </table>
  59. </td>
  60. </tr>
  61. </table>
  62. </form>
复制代码
附件: 您需要登录才可以下载或查看附件。没有帐号?速度点这里:注册成为免费种子会员
招友情链接:无要求,无限制
www.vwwv.com.ar

附件: 您需要登录才可以下载或查看附件。没有帐号?速度点这里:注册成为免费种子会员
招友情链接:无要求,无限制
www.vwwv.com.ar

TOP

附件: 您需要登录才可以下载或查看附件。没有帐号?速度点这里:注册成为免费种子会员
招友情链接:无要求,无限制
www.vwwv.com.ar

TOP

返回列表