make_tinyurl.html 447 B

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