IE上的POPUP窗口问题

时间:2011-11-30 01:05:29

标签: jquery internet-explorer popup action

$('#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上找到它。

2 个答案:

答案 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是实际的网址还是变量?