[點晴模切ERP]input控件在輸入值后無法在lodop控件下打印最新值
input控件在輸入值后無法在lodop控件下打印最新值? 在頁面上添加以下代碼
function refreshData(){ //讓innerHTML獲取的內容包含input和select(option)的最新值 var allInputObject=document.body.getElementsByTagName("input"); var alltextareaObject=document.body.getElementsByTagName("textarea"); for (i = 0; i < alltextareaObject.length; i++) { alltextareaObject[i].innerHTML=alltextareaObject[i].value; }; for (i = 0; i < allInputObject.length; i++) {
if(allInputObject[i].type=="checkbox") {
if (allInputObject[i].checked )
allInputObject[i].setAttribute("checked","checked");
else
allInputObject[i].removeAttribute("checked");
} else if(allInputObject[i].type=="radio") {
if (allInputObject[i].checked )
allInputObject[i].setAttribute("checked","checked");
else
allInputObject[i].removeAttribute("checked");
}else allInputObject[i].setAttribute("value",allInputObject[i].value);
};
for (i = 0; i < document.getElementsByTagName("select").length; i++) {
var sl=document.getElementsByTagName("select")[i];
for (j = 0; j < sl.options.length; j++) {
if (sl.options[j].selected)
sl.options[j].setAttribute("selected","selected");
else sl.options[j]=new Option(sl.options[j].text,sl.options[j].value);
};
};
};
然后在啟動控件的函數中調用一下這個refreshData()函數 如下圖: 點晴模切ERP更多信息:http://moqie.clicksun.cn,聯系電話:4001861886 該文章在 2023/8/18 9:17:24 編輯過 |
關鍵字查詢
相關文章
正在查詢... |