bgColor.js
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:1k
源码类别:

.net编程

开发平台:

Others

  1. function onColor(td)
  2. {
  3. td.style.backgroundColor='#FFFF99';
  4. td.style.color='#0600FF';
  5. }
  6. function offColor(td)
  7. {
  8. td.style.backgroundColor='';
  9. td.style.color='';
  10. }
  11. // Table Td BgColor
  12. function onShortcutMenu(td)
  13. {
  14. td.style.backgroundColor='#FFEFC3';
  15. td.style.color='#0000FF';
  16. }
  17. function offShortcutMenu(td)
  18. {
  19. td.style.backgroundColor='';
  20. td.style.color='';
  21. }
  22. // Shortcut Menu BgColor
  23. function onShortcutMenu2(td)
  24. {
  25. td.style.backgroundColor='#FFFEBC';
  26. td.style.color='#0000FF';
  27. }
  28. function offShortcutMenu2(td)
  29. {
  30. td.style.backgroundColor='';
  31. td.style.color='';
  32. }
  33. // Shortcut Menu BgColor 2
  34. function onShortcutMenu3(td)
  35. {
  36. td.style.backgroundColor='#E7FFC2';
  37. td.style.color='#0000FF';
  38. }
  39. function offShortcutMenu3(td)
  40. {
  41. td.style.backgroundColor='';
  42. td.style.color='';
  43. }
  44. // Shortcut Menu BgColor 3
  45. function onBorderColor(td)
  46. {
  47. td.style.border='1px dotted #888888';
  48. td.style.backgroundColor='#F6F6F6';
  49. td.style.color='#0000FF';
  50. }
  51. function offBorderColor(td)
  52. {
  53. td.style.border='1px #FFFFFF solid';
  54. td.style.backgroundColor='';
  55. td.style.color='';
  56. }
  57. // mainButton BorderColor
  58. function onButton(td)
  59. {
  60. td.style.backgroundImage='url(../Images/button_a_blue.gif)';
  61. td.style.color='#FFFFFF';
  62. }
  63. function offButton(td)
  64. {
  65. td.style.backgroundImage='';
  66. td.style.color='';
  67. }
  68. // Button BgColor