index.js 519 B

1234567891011121314151617181920212223242526272829
  1. function isMatch(str1, str2) {
  2. var index = str1.indexOf(str2);
  3. if (index == -1)
  4. return false;
  5. return true;
  6. }
  7. function ResumeError() {
  8. return true;
  9. }
  10. window.onerror = ResumeError;
  11. function doClick(o) {
  12. o.className = "nav_current";
  13. var j;
  14. var id;
  15. var e;
  16. for (var i = 1; i <= 8; i++) {
  17. id = "nav" + i;
  18. j = document.getElementById(id);
  19. e = document.getElementById("sub" + i);
  20. if (id != o.id) {
  21. j.className = "nav_link";
  22. e.style.display = "none";
  23. } else {
  24. e.style.display = "block";
  25. }
  26. }
  27. }