我需要在页面加载时显示结果(基于当前位置的酒吧和商店)。如果我提交表单,它目前可以工作,但我试图让它在页面加载时工作。
我正在尝试以下内容:
$(document).ready(function(){
$.post("<?= site_url('stockists/search'); ?>", {location: coords});
});
coords 是一个包含当前位置的变量
我需要在页面加载时显示结果(基于当前位置的酒吧和商店)。如果我提交表单,它目前可以工作,但我试图让它在页面加载时工作。
我正在尝试以下内容:
$(document).ready(function(){
$.post("<?= site_url('stockists/search'); ?>", {location: coords});
});
coords 是一个包含当前位置的变量