Guest User

Untitled

a guest
Nov 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style type="text/css">
  7. label {
  8. color: gray;
  9. }
  10. .focused {
  11. color: red;
  12. outline: 0;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17.  
  18. <form action="">
  19. <input type="checkbox" name="test" id="test" value="1" /> <label tabindex="0" hideFocus="true" for="test" id="labelTest">label</label>
  20. </form>
  21.  
  22. <script type="text/javascript">
  23. var labelTest = document.getElementById('labelTest');
  24. labelTest.onfocus = function() {
  25. this.className = 'focused';
  26. }
  27. labelTest.onblur = function() {
  28. this.className = '';
  29. }
  30. </script>
  31.  
  32. </body>
  33. </html>
Add Comment
Please, Sign In to add comment