12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- Namespace.register("U.Control.LDB");
- U.Control.LDB.A = function () {
- };
- //redio checkbox 控制参数
- U.Control.LDB.Thisback = false;
- U.Control.LDB.Thisback2 = false;
- //构建div 调用后返回div-
- U.Control.LDB.div = function () {
- return $$('div', { 'class': 'U_Control_LDB_div1', 'innerHTML': 'div' }, document.body);
- };
- //构建div2 调用后返回div2-
- U.Control.LDB.div2 = function () {
- return $$('div', { 'class': 'U_Control_LDB_div2', 'innerHTML': 'div2' }, document.body);
- };
- // 构建buttom 调用后返回buttom
- U.Control.LDB.ButtonDiv = function () {
- return $$('div', { 'class': 'U_Control_LDB_ButtonDiv', 'innerHTML': 'Button'}, document.body);
- };
- // 构建buttom2 调用后返回buttom2
- U.Control.LDB.ButtonDiv2 = function () {
- return $$('div', { 'class': 'U_Control_LDB_ButtonDiv2', 'innerHTML': 'Button'}, document.body);
- }
- // 构建reset buttom 调用后返回 resrt button-
- U.Control.LDB.Reset = function () {
- return $$('div', { 'class': 'U_Control_LDB_Reset', 'innerHTML': 'Reset'}, document.body);
- };
- //构建submit buttom 调用后返回 submit
- U.Control.LDB.Submit = function () {
- return $$('div', { 'class': 'U_Control_LDB_Submit', 'innerHTML': 'Submit' }, document.body);
- };
- // 构建 text input 调用后返回一个 text 输入框-
- U.Control.LDB.Text = function () {
- return $$('input', { 'class': 'U_Control_LDB_Text', 'placeholder': 'Text' }, document.body);
- };
- // 构建 text input 调用后返回一个 text 输入框-
- U.Control.LDB.password = function () {
- return $$('input', { 'class': 'U_Control_LDB_Text', 'type': 'password' }, document.body);
- };
- // 构建 redio 调用后返回redio按钮-
- U.Control.LDB.Redio = function () {
- // return $$('div', { 'class': 'U_Control_LDB_Redio', 'innerHTML': '' }, document.body);
- var redio = $$('div', { 'class': 'U_Control_LDB_Redio', 'innerHTML': '' }, document.body);
- //redio控制函数
- redio.onclick = function () {
- if (U.Control.LDB.Thisback2) {
- $('.U_Control_LDB_Redio')[0].style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/bRedio.jpg)";
- this.style.backgroundPosition = '-5px'
- U.Control.LDB.Thisback2 = false;
- } else {
- $('.U_Control_LDB_Redio')[0].style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/Redio.jpg)";
- this.style.backgroundPosition = '-2px'
- U.Control.LDB.Thisback2 = true;
- };
- }
- return redio
- };
- // 构建checkbox 调用后返回checkbox按钮-
- U.Control.LDB.Checkbox = function () {
- var checked = $$('div', { 'class': 'U_Control_LDB_Checkbox', 'innerHTML': '' }, document.body);
- //checkbox控制函数
- checked.onclick = function () {
- if (U.Control.LDB.Thisback2) {
- checked.style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/bCheckbox.jpg)";
- U.Control.LDB.Thisback2 = false;
- } else {
- checked.style.backgroundImage = "url(http://d.1473.cn/controls/pc/LDB/LDB/Checkbox.jpg)";
- U.Control.LDB.Thisback2 = true;
- }
- };
- return checked;
- };
- // 构建img 调用后返回img-
- U.Control.LDB.img = function () {
- return $$('img', { 'class': 'U_Control_LDB_img', 'src': 'http://d.1473.cn/controls/pc/LDB/LDB/img.jpg'}, document.body);
- };
|