Seçkin bir alanın değerini değiştirmek metin alanını güncellemek

0 Cevap php

Bu testte iki alanları ile basit bir form var. Bir kullanıcı seçin alanında bir seçeneği seçtiğimde metin alanını upadate gerekir.

Bu html kodu:

<form id="form1" name="form1" method="post" action="">
  <input type="text" name="dst" id="dst" value="" />
  <select name="contactos" id="contactos">
    <option value="-1">No selected</option>
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
  </select>
</form>

Bu jquery kodu:

<script>
$(document).ready(function() {
   $("#contactos").change(function(event){
   var id = $("#contactos").find(':selected').val();
     $.getJSON('contacback.php?contactoID='+id, function(data) {
         $.each(data, function(i,item) {
           if (item.field == "dst") {
              $("#dst").val(item.value); }
           });
        });
    });
});
</script>

(Eklendi) Bu php kodu:

<?php require_once('Connections/cnx3.php'); ?>
<?php

$colname_rsContactos = "-1";
if (isset($_GET['contactoID'])) {
$colname_rsContactos = $_GET['contactoID'];
}

mysql_select_db($database_cnx3, $cnx3);
$query_rsContactos = sprintf("SELECT contactoID, telefono FROM contactos WHERE contactoID = %s",
GetSQLValueString($colname_rsContactos, "int"));
$rsContactos = mysql_query($query_rsContactos, $cnx3) or die(mysql_error());

while ($fila = mysql_fetch_array($rsContactos)) {

$json = array('field' => 'dst',
              'value' => $fila['telefono']);
}

echo json_encode($json);

mysql_free_result($rsContactos);
?>

The query to php is sent OK and the JSON answer it's also OK image of JSON reply

But the value of #dst is not updated. Any helps is welcome !! Thanks

Çözüldü! Teşekkürler jQuery komut "Saldırı" için:

$("#contactos").change(function(event){
    var id = $("#contactos").find(':selected').val();
      $.getJSON('contacback.php?contactoID='+id, function(data) {
        if (data.field == "dst") {
            $("#dst").val(data.value);
            }
      });
 });

0 Cevap