test.html 561 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  5. <script src="js/jquery-3.3.1.min.js"></script>
  6. <script language="javascript">
  7. $(document).ready(function(){
  8. $("see").click(function(){
  9. var to =$(this).attr("to");
  10. var link;
  11. if(to){
  12. link=to;
  13. }
  14. else{
  15. link=$(this).text();
  16. }
  17. alert(link);
  18. });
  19. });
  20. </script>
  21. <style>
  22. see{
  23. color:blue;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. This is a <see to="属格">gen</see>.
  29. </body>
  30. </html>