复制内容到剪贴板
代码:
function saveSettings() {
var settings = {
printer : document.getElementById('printer-list').value,// 设置选中的打印机
paperName : document.getElementById('paper-list').value,// 设置选中的纸张
orientation : document.getElementById('portrait').checked ? 1 : 2, // 方向
marginLeft : parseFloat(document.getElementById('leftmargin').value), // 边距
marginTop : parseFloat(document.getElementById('topmargin').value),
marginRight : parseFloat(document.getElementById('rightmargin').value),
marginBottom : parseFloat(document.getElementById('bottommargin').value)
}
getJCP().setLastSettings("订单", settings);
}