| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <script src="js/jquery-3.3.1.min.js"></script>
- <script language="javascript">
- $(document).ready(function(){
- $("see").click(function(){
- var to =$(this).attr("to");
- var link;
- if(to){
- link=to;
- }
- else{
- link=$(this).text();
- }
- alert(link);
- });
- });
-
- </script>
- <style>
- see{
- color:blue;
- }
- </style>
- </head>
- <body>
- This is a <see to="属格">gen</see>.
- </body>
- </html>
|