0

我正在使用 codeigniter,在其中一个视图中,当数据库中不存在员工代码时,我触发了以下函数(使用 jquery ajax - 工作正常)。当输入的代码无效但确认结果为真时,会显示确认弹出窗口,以下代码不会触发弹出窗口!

function popup(){
        if(confirm("Employee_code not available! \nSave the code as new employee?")){
            //var new_emp_window = "<?php echo base_url().'index.php/it_inventory/new_employee'; ?>";
            widnow.open('www.google.com', 'width=500, height=500');
        }else{
            alert("ohh!");
            $('#employee_code').val('').focus();
        }
    }
4

2 回答 2

2

它应该是window而不是idnow,更改:

widnow.open

window.open

尝试:

window.open("www.google.com", "_blank", "width=500,height=500");

参见:window.open()

于 2013-04-09T05:51:07.233 回答
0
  1. 首先更改www.google.comhttp://www.google.com。由于浏览器将没有协议前缀的 URL 处理为相对路径。

  2. 检查您的浏览器上的弹出窗口阻止程序是否处于活动状态。

于 2013-04-09T06:10:24.540 回答