Mavicap adlı üyeden alıntı: mesajı görüntüle
Hocam şimdi vereceğim kodu deneyiniz muhtemelen probleminiz çözülecektir.
<!DOCTYPE HTML>
<html lang="en-US">
<head>
   <meta charset="UTF-8">
   <title>Auto</title>
   <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
   <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
   <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/ui-lightness/jquery-ui.css" />
<style>
 
   //* search *//
 
  #search {
            width: 300px;
        }
        .ui-autocomplete li a {
            overflow: hidden;
            display: block;
        }
        .ui-autocomplete li a img {
            float: left;
            margin-right: 10px;
            height: 40px;
        }
        .ui-autocomplete li a .username {
            display: block;
            font-size: 12px;
            line-height: 17px;
         background-color:#000;
        }
        .ui-autocomplete li a .email {
            display: block;
            font-size: 12px;
            color: #999;
        }
      .ui-autocomplete-loading {
   background: #fff url(ajax-loader.gif) no-repeat 97%;
 
}  
 
   //* search *//
    
    
</style>
<script>
        $(function(){
 
            var $search = $('#search');
 
            $search.autocomplete({
                source: 'kapi.php',
                focus: function(event, ui){
                    $search.val(ui.item.mus_telefon);
                },
                select: function(event, ui){
//                    window.location.href = 'https://www.google.com/#q=' + ui.item.mus_adi;
              $('#telefon').val(ui.item.mus_telefon);
                }
            });
 
            $search.data('.ui-autocomplete-loading')._renderItem = function( ul, item ){
 
               
 
                return $li.appendTo(ul);
 
            };
 
        });
    </script>
</head>
<body>
<form style="border:6px solid #00E7FF;" id="form" name="form" method="post" action="gonder.php">
   <tr>
      <td><strong>Adı Soyadı</strong></td>
      <td><strong>:</strong></td>
      <td><label for="mus_adi"></label>
     <input name="mus_adi" id="search"  value="" type="text" size="25" title="Lütfen Müşteri Adı Yazınız!" required style="border:2px inset #00E7FF; padding:5px; "/>
</td>
    </tr>
    <tr>
      <td><strong>Telefon</strong></td>
      <td><strong>:</strong></td>
      <td><label for="mus_telefon"></label>
      <input name="mus_telefon" maxlength="11" title="Lütfen Telefon Numarası Yazınız!" type="text" id="telefon" size="25" value=""  required style="border:2px inset #00E7FF; padding:5px; "/></td> </tr>
          <td width="98"><input type="submit" name="submit" id="submit" value="Formu Gönder" /></td>
</form>
    
</body>
</html>

$('#telefon').val(ui.item.mus_telefon); kodları inceledim burada telefon nosu göster id=telefon formda mus_telefon kısmı id="telefon" eklediniz ve sonuç istediğim gibi. Çok teşekkür ederim hocam.