0

私は codeigniter を使用しており、ビューの 1 つで、データベースに従業員コードが存在しない場合に次の関数がトリガーされます (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

widnowではなくwindowにする必要があります。次のように変更します。

widnow.open

window.open

試す:

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

参照: window.open()

于 2013-04-09T05:51:07.233 に答える