JQuery ile Sorun

0 Cevap php

Ben bir otomatik tamamlama arama komut (jQuery + PHP) oluşturmak için çalışıyoruz ama ben bu script ile büyük bir sorun var.

Benim jQuery kodu:

$(document).ready(function() {
  $("#search").keyup(function() {
    var search = $("#search").val();
    if (search.length > 0) {
      $.ajax({
        type: "POST",
        url: "search.php",
        data: "q="+search,
        dataType: "text",
        cache: false,
        success: function(result){
          $("#autocomplete").fadeIn("fast");
          $("#autocomplete").html(result);
        }
      });
    }
  });
  $("#autocomplete").click(function() {
    var complete = $(this).attr("title");
    alert(complete);
    $("#search").focus();
  });
});

PHP kodu:

<?php
include("config.php");
header("Content-type: text/html; charset=UTF-8");

$search = $_POST['q'];
if(mb_strlen($search, "UTF-8") > 0) {
  $query = "SELECT * FROM `search` WHERE `title` LIKE '%$search%' ORDER BY `title` ASC";
  $result = mysql_query($query) or die(mysql_error());
  $num = mysql_num_rows($result);
  if($num == 0) {
    echo "Няма резултати";
  }
  else {
    while ($row = mysql_fetch_assoc($result)) {
      echo "<a href=\"javascript:void(0)\" class=\"link\" title=\"{$row['title']}\">{$row['title']}</a> <br />";
    }
  }
}
?>

o attr("title") bağlantıları almak için olamaz çünkü ancak hata jQuery olduğunu ...

Yardım ve benim İngilizce için üzgünüm lütfen :)

0 Cevap