simple-dir.html 996 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <script src="bind.js"></script>
  7. <script src="../../../dist/seed.js"></script>
  8. </head>
  9. <body>
  10. <div id="hi" sd-test sd-test2>
  11. </div>
  12. <p class="one"></p>
  13. <p class="two"></p>
  14. <script>
  15. var a = new Seed({
  16. el: '#hi',
  17. directives: {
  18. test: {
  19. bind: function () {
  20. document.querySelector('.one').textContent = 'bind'
  21. },
  22. unbind: function () {
  23. document.querySelector('.one').textContent = 'unbind'
  24. }
  25. },
  26. test2: function () {
  27. document.querySelector('.two').textContent = 'bind'
  28. }
  29. }
  30. })
  31. </script>
  32. </body>
  33. </html>