点晴模切ERP-页面如何获取打印机列表并默认的选中
当前位置:点晴教程→点晴ERP企业管理信息系统
→『 经验分享&操作答疑 』
:点晴ERP-页面如何获取打印机列表并默认的选中 添加一个select标签 <select style="width:180px;" id="printerList"> 创建一个函数 function createPrinterList(){ LODOP=getLodop(); var iPrinterCount=LODOP.GET_PRINTER_COUNT(); printerName = LODOP.GET_PRINTER_NAME(-1); for (var i= 0;i< iPrinterCount; i++) { var option = document.createElement ('option'); option.text = LODOP.GET_PRINTER_NAME(i); option.value = i; //默认打印机默认选中 if(option.text==printerName){ option.selected=true; } document.getElementById('printerList').appendChild(option); } } 自动加载函数 window.onload = function () { createPrinterList(); } 点晴模切ERP更多信息:http://moqie.clicksun.cn,联系电话:4001861886 该文章在 2023/11/29 11:05:20 编辑过 |
关键字查询
相关文章
正在查询... |