选择onchange更新php值

时间:2016-04-13 10:59:25

标签: php jquery select onchange

我想在不刷新页面的情况下将选项与输入文本“连接”

这是我的例子

<select name="name_select" id="my_select">
  <option value="1">first</option>
  <option value="2">first</option>
  <option value="3">first</option>
</select>

<?php ...query(SELECT name FROM table WHERE id = value) ?>

然后在var $ name中有db

的值
<input type="text" value="<?php echo $name; ?>" />

我想我必须使用jquery post / get但是如何只更新我需要检查db的var?

2 个答案:

答案 0 :(得分:3)

就像Thamizhan在评论中所说,你需要使用AJAX。

这是一个简单的例子:

HTML (index.html)

<select name="name_select" id="my_select">
  <option value="1">first</option>
  <option value="2">first</option>
  <option value="3">first</option>
</select>

<强> JS

$('#my_select').on('change', function () {
    var selectData = $(this).val();
    $.ajax({
        type: "POST",
        url: "custom.php",
        data: {'selectData': selectData },
        success: function (json) {
            // do things
        }
    });
}

PHP (custom.php)

if (isset($_POST['selectData'])) {
    var_dump($_POST['selectData']); // $_POST['selectData'] is the selected value
    // query here
    // and you can return the result if you want to do some things cool ;)
}

答案 1 :(得分:0)

$("#my_select").on("change", function () {
   $.ajax({
        url: "phpfile.php",
        method: 'POST',
        data: {val: $(this).val()},
        success: function (data) {
            $("[type='text']").val(data);

        }
    });
});

在phpfile.php中

include("db.php");

// ... your code ...

// execute sql(SELECT name FROM table WHERE id = value) and return value.