如何将php变量传递到单独的文件中并在不提交表单的情况下获取结果?

时间:2017-09-20 10:38:34

标签: javascript php jquery wordpress

我用过汽车销售网站。用户可以将他们的汽车发售。我希望用户在点击预期价格字段时能够看到他们汽车的预期价格,而无需提交。函数输入将作为变量传递。见图像

enter image description here

1 个答案:

答案 0 :(得分:1)

搜索ajax。例如(使用jQuery)

$.ajax({ url: "website.com/phpfile.php?var=" + encodeURIComponent(value),
    cache: false,
    timeout: 10000,
    success: function(response)
    {
         // do something with the result, or omit the whole success if not needed
    },
    error: function(jqXHR, textStatus, errorThrown)
    {
         // notify user about error?
    }
});

有更简单,更面向的版本,例如$ .post或$ .get 点击此处:http://api.jquery.com/category/ajax/