example13.html 611 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <!-- Ajax (Asynchronous JavaScript and XML) -->
  9. <!-- JSON (JavaScript Object Notation) -->
  10. <script>
  11. var stu = {
  12. "name": "骆昊",
  13. "age": 15,
  14. "study": function(courseName) {
  15. alert(this.name + "正在学习" + courseName);
  16. },
  17. "watchAV": function() {
  18. if (this.age < 18) {
  19. alert(this.name + '只能观看《熊出没》.');
  20. } else {
  21. alert(this.name + '可以观看岛国片.');
  22. }
  23. }
  24. };
  25. stu.study('Python');
  26. stu.watchAV();
  27. </script>
  28. </body>
  29. </html>