2013年9月4日 星期三

jquery-increment-search

html-search

inf : http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_ajax_post2


<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("input").keyup(function(){
    txt=$("input").val();
    $.post("demo_ajax_gethint.asp",{suggest:txt},function(result){
      $("span").html(result);
    });
  });
});
</script>
</head>
<body>

<p>Start typing a name in the input field below:</p>
First name:

<input type="text" />
<p>Suggestions: <span></span></p>
<p>The file used in this example (<a href="demo_ajax_gethint.txt" target="_blank">demo_ajax_gethint</a>) is explained in our Ajax tutorial</p>

</body>
</html>

沒有留言:

張貼留言