點晴ERP-動態(tài)JS加載一個批量反審BOM按鈕
當(dāng)前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
:點晴ERP-動態(tài)JS加載一個批量反審BOM按鈕 const objs = document.getElementsByClassName("box-tools pull-right"); // 創(chuàng)建外層 div const outerDiv = document.createElement('div'); outerDiv.onclick = function() {}; // 設(shè)置 onclick 事件(可根據(jù)需要填充邏輯) outerDiv.className = 'button_100px_img'; outerDiv.style.float = 'left'; outerDiv.style.maxWidth = '90px'; outerDiv.style.minWidth = '80px'; // 創(chuàng)建 img 元素 const img = document.createElement('img'); img.src = 'images/ckeck.gif'; img.border = '0'; img.align = 'absmiddle'; img.title = '一鍵反審'; // 創(chuàng)建 span 元素 const span = document.createElement('span'); span.style.fontWeight = 'bold'; span.style.fontFamily = '"宋體"'; // 注意:字體名稱需要用引號包裹 // 設(shè)置 span 內(nèi)部文本和事件 span.textContent = '批量反審'; span.onclick = function() { document.getElementById('show_batch_end_js').checked = true; if (document.getElementById("show_batch_end_js").checked==true){ for(i=0;i<document.getElementById("total_no_i").value;i++){document.getElementById("batch_end_"+i).style.display='';document.getElementById("csbatch_end_"+i).style.display='';} }else{ for(i=0;i<document.getElementById("total_no_i").value;i++){document.getElementById("batch_end_"+i).style.display='none';document.getElementById("csbatch_end_"+i).style.display='none';} } batch_mul_order(); }; // 創(chuàng)建 checkbox input 元素 const checkbox = document.createElement('input'); checkbox.type = 'checkbox'; checkbox.name = 'show_batch_end_js'; checkbox.id = 'show_batch_end_js'; checkbox.value = '1'; checkbox.style.width = '14px'; checkbox.style.height = '14px'; checkbox.style.verticalAlign = 'text-top'; checkbox.style.float = 'right'; checkbox.style.marginTop = '3px'; checkbox.onclick = function() { if (document.getElementById("show_batch_end_js").checked==true){ for(i=0;i<document.getElementById("total_no_i").value;i++){document.getElementById("batch_end_"+i).style.display='';document.getElementById("csbatch_end_"+i).style.display='';} }else{ for(i=0;i<document.getElementById("total_no_i").value;i++){document.getElementById("batch_end_"+i).style.display='none';document.getElementById("csbatch_end_"+i).style.display='none';} } }; // 將元素添加到外層 div 中 outerDiv.appendChild(img); outerDiv.appendChild(span); outerDiv.appendChild(checkbox); // 將外層 div 添加到父元素中 objs[1].appendChild(outerDiv); 該文章在 2024/11/8 17:41:06 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |