从Javascript函数将值传递给PHP页面

时间:2019-01-28 05:44:48

标签: javascript php ajax

我正在尝试将值从javascript函数传递给另一个php页面。

功能如下:

function selectCustomer(id) {
if(str.toUpperCase().replace(' ','')  != id.toUpperCase()){
    var stageSeletedValue = $('#'+id).children('#listValue').text();
    $('.stageDropdown').children('#stageValue').text(stageSeletedValue);
    var enquiry_id=document.getElementById('enquiry_id').value;
    var strUrl='stage-change/'+enquiry_id+'/'+stageSeletedValue;
    $.ajax({
        url : strUrl,
        success : function(data) {
//          $('#stageChange').html(data);
            if(data=='true'){
                console.log(data); 
                    //if (stageSeletedValue !=='Quote Sent') {
                    //  window.location.reload();
                    //}
                //window.location.reload();
                function popup('form.php');
            }
            },
        }); 
    }
 }

弹出功能如下:

function popup(URL) {
 day = new Date();
 **URL=URL+"?id=+id";**
 id = day.getTime();
 eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=880,height=300');");

}

必须出现一个弹出窗口(带有form.php?id = + id),将id传递给form.php页面。但是它不起作用。任何人都可以在这方面指导我。我对Ajax和Java语言很陌生。预先感谢。

0 个答案:

没有答案