在更改或文本框离开时在php中的ajax请求中发布文本框值

时间:2016-10-03 06:55:18

标签: javascript php ajax

我的表单中有自动填充地址google api文本框,当我选择地址时,我会在另外两个文本框中获取所选地址的纬度和长度。

现在,当我选择addreess时,我想在我的ajax请求中传递lat和long值,但每次我得到空值。

请帮我解决这个问题。

UserDefaults.standard.removeObject(forKey: "MyKey")

1 个答案:

答案 0 :(得分:-1)

你可以通过改变音位和下降来调用你的ajax

$("#fromlat").on('change', function() {   
ajaxRequest = $.ajax({
url: '<?php echo Router::url(array("controller" => "Orders", "action" =>    "searchCourier")); ?>',
    type: 'POST',
    data: {
        frmlat: $("#fromlat").val(),
        frmlong: $("#fromlong").val()
    },
   dataType: "html",
   success: function(response) {
        $("#courier_locations").html(response);
    },
    complete: function() {
        $('.spinicon').hide();
    }
});

});