2011-03-12 97 views
0

jQuery UI的自動完成功能無法正常工作,可能是什麼問題?這裏是code.Thank你jQuery UI的自動完成功能不會工作

<head> 
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
     <title>Homepage</title> 
     <script type="text/javascript" src="lib/jquery/jquery-1.4.2.js"></script> 
     <script type="text/javascript" src="lib/jquery/jquery-ui-1.8.10.custom.min.js"/> 
     <link rel="stylesheet" type="text/css" href="/jquery-ui-1.8.10.custom.css"/> 
     <link rel="stylesheet" type="text/css" href="/stylez.css"/> 
     <script type="text/jscript"> 
      $(document).ready(function(){ 
      $('.searchfield').autocomplete({source:["salim","keli","ally"]}); 
    }); 
    </script> 

    </head> 
    <body> 
<div> 
      <label><b>Search</b></label> 
      <input type="text" class="searchfield" size="52"/> 
      </div> 
</body> 
</html> 

回答

0

第二<script>標籤需要結束標記:

<script type="text/javascript" src="lib/jquery/jquery-ui-1.8.10.custom.min.js"></script> 
2

<script type="text/jscript"> =><script type="text/javascript">

script標籤不是自閉。您始終需要提供關閉</script>標籤。

Live demo here