在前端页面中导入qrcode.js(下载点击打开链接)和jquery.js(下载点击打开链接) <script> function print() { var textbox1 = $('input[name="textbox1"]').val(); if(!textbox1){ alert("待生成的页面不能为空"); }else{ var symHref = 'print.html?id=' + textbox1; window.open(symHref); } } </script> &