make_tinyurl.html 498 B

123456789101112131415161718192021222324
  1. <!--
  2. // Copyright (c) MetaCommunications, Inc. 2003-2004
  3. //
  4. // Use, modification and distribution are subject to the Boost Software
  5. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy
  6. // at http://www.boost.org/LICENSE_1_0.txt)
  7. -->
  8. <div class="tinyurl">
  9. <script type="text/javascript">
  10. <!--
  11. function make_tinyurl()
  12. {
  13. window.open( 'http://tinyurl.com/create.php?url=' + parent.location.href );
  14. }
  15. //-->
  16. </script>
  17. <a href="javascript:make_tinyurl()">TinyUrl</a>
  18. </div>
粤ICP备19079148号