LDB.js 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Namespace.register("U.Control.LDB");
  2. U.Control.LDB.A = function () {
  3. };
  4. //redio checkbox 控制参数
  5. U.Control.LDB.Thisback = false;
  6. U.Control.LDB.Thisback2 = false;
  7. //构建div 调用后返回div-
  8. U.Control.LDB.div = function () {
  9. return $$('div', { 'class': 'U_Control_LDB_div1', 'innerHTML': 'div' }, document.body);
  10. };
  11. //构建div2 调用后返回div2-
  12. U.Control.LDB.div2 = function () {
  13. return $$('div', { 'class': 'U_Control_LDB_div2', 'innerHTML': 'div2' }, document.body);
  14. };
  15. // 构建buttom 调用后返回buttom
  16. U.Control.LDB.ButtonDiv = function () {
  17. return $$('div', { 'class': 'U_Control_LDB_ButtonDiv', 'innerHTML': 'Button'}, document.body);
  18. };
  19. // 构建buttom2 调用后返回buttom2
  20. U.Control.LDB.ButtonDiv2 = function () {
  21. return $$('div', { 'class': 'U_Control_LDB_ButtonDiv2', 'innerHTML': 'Button'}, document.body);
  22. }
  23. // 构建reset buttom 调用后返回 resrt button-
  24. U.Control.LDB.Reset = function () {
  25. return $$('div', { 'class': 'U_Control_LDB_Reset', 'innerHTML': 'Reset'}, document.body);
  26. };
  27. //构建submit buttom 调用后返回 submit
  28. U.Control.LDB.Submit = function () {
  29. return $$('div', { 'class': 'U_Control_LDB_Submit', 'innerHTML': 'Submit' }, document.body);
  30. };
  31. // 构建 text input 调用后返回一个 text 输入框-
  32. U.Control.LDB.Text = function () {
  33. return $$('input', { 'class': 'U_Control_LDB_Text', 'placeholder': 'Text' }, document.body);
  34. };
  35. // 构建 text input 调用后返回一个 text 输入框-
  36. U.Control.LDB.password = function () {
  37. return $$('input', { 'class': 'U_Control_LDB_Text', 'type': 'password' }, document.body);
  38. };
  39. // 构建 redio 调用后返回redio按钮-
  40. U.Control.LDB.Redio = function () {
  41. // return $$('div', { 'class': 'U_Control_LDB_Redio', 'innerHTML': '' }, document.body);
  42. var redio = $$('div', { 'class': 'U_Control_LDB_Redio', 'innerHTML': '' }, document.body);
  43. //redio控制函数
  44. redio.onclick = function () {
  45. if (U.Control.LDB.Thisback2) {
  46. $('.U_Control_LDB_Redio')[0].style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/bRedio.jpg)";
  47. this.style.backgroundPosition = '-5px'
  48. U.Control.LDB.Thisback2 = false;
  49. } else {
  50. $('.U_Control_LDB_Redio')[0].style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/Redio.jpg)";
  51. this.style.backgroundPosition = '-2px'
  52. U.Control.LDB.Thisback2 = true;
  53. };
  54. }
  55. return redio
  56. };
  57. // 构建checkbox 调用后返回checkbox按钮-
  58. U.Control.LDB.Checkbox = function () {
  59. var checked = $$('div', { 'class': 'U_Control_LDB_Checkbox', 'innerHTML': '' }, document.body);
  60. //checkbox控制函数
  61. checked.onclick = function () {
  62. if (U.Control.LDB.Thisback2) {
  63. checked.style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/bCheckbox.jpg)";
  64. U.Control.LDB.Thisback2 = false;
  65. } else {
  66. checked.style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/Checkbox.jpg)";
  67. U.Control.LDB.Thisback2 = true;
  68. }
  69. };
  70. return checked;
  71. };
  72. // 构建img 调用后返回img-
  73. U.Control.LDB.img = function () {
  74. return $$('img', { 'class': 'U_Control_LDB_img', 'src': 'http://d.1473.cn/controls/pc/LDB/LDB/img.jpg'}, document.body);
  75. };