$('#order_info_print_confirmation').click(function() {
var link = 'action_URL' + "?" + $('action_NAME').serialize();
window.open(link,"Print Confirmation","directories=no,status=yes,width=620, height=900,top=0,left=0,scrollbars=yes");
});
这里有什么问题?我可以在Firefox上获得一个带有printConfirmation
操作的弹出窗口,但无法在IE上找到它。
答案 0 :(得分:1)
删除“打印确认”之间的空格,将其设为PrintConfirmation。
window.open(link, "PrintConfirmation", "directories=no,status=yes,width=620, height=900,top=0,left=0,scrollbars=yes");
我认为这可行的
答案 1 :(得分:0)
乍一看,action_NAME
似乎是一个ID,但您错过了#
$('#order_info_print_confirmation').click(function() {
var link = 'action_URL' + "?" + $('#action_NAME').serialize();
window.open(link,"Print Confirmation","directories=no,status=yes,width=620, height=900,top=0,left=0,scrollbars=yes");
});
而且,action_URL
是实际的网址还是变量?