使用 jQuery(Ajax)/PHP/MySQL實現自動完成功能

來源:互聯網
上載者:User
[轉]使用 jQuery(Ajax)/PHP/MySQL實現自動完成功能

著作權聲明:轉載時請以超連結形式標明文章原始出處和作者資訊及本聲明
http://monw3c.blogbus.com/logs/29329105.html

 

一如往常,demo和源碼的zip包在文章最後,慢慢欣賞吧!

我覺得我有必要寫這個教程,因為曾經見到的大部分關於自動完成的應用程式都只是給你一個程式源碼包,然後告訴你怎麼使用,而不是告訴你它是如何工作的以及為什麼這樣做。而知道這些可以讓你對這個外掛程式可以進一步的按自己的需求定製(關於這一點我在我的blog裡寫過不少關於其他應用的文章)。

好,我們現在開始。

JavaScript代碼

<script src="jquery-1.2.1.pack.js" type="text/javascript"></script>
<script type="text/javascript">

function lookup(inputString) {
    if(inputString.length == 0) {
        // Hide the suggestion box.
        $(‘#suggestions’).hide();
    } else {
        $.post("rpc.php", {queryString: ""+inputString+""}, function(data){
            if(data.length >0) {
                $(‘#suggestions’).show();
                $(‘#autoSuggestionsList’).html(data);
            }
        });
    }
} // lookup

function fill(thisValue) {
    $(‘#inputString’).val(thisValue);
   $(‘#suggestions’).hide();
}

</script>

JS的解釋

 好,從上面的代碼看到,我們需要串連到一個叫做rpc.php的檔案,這個檔案處理所有的操作。

lookup函數使用從文本輸入框中得到的單詞然後使用jQuery中Ajax的方法POST把它傳給rpc.php。

如果輸入字元 ‘inputString’是‘0’(Zero,譯註:在這裡是指在搜尋方塊中沒輸入任何內容),建議框就被隱藏,這也很人性化,你想,如果在搜尋方塊中沒有輸入任何東西,你也不期望會出現個建議提示框。

如果輸入框中有內容,我們就得到了這個 ‘inputString’並傳遞給rpc.php頁面,然後jQuery 的$.post()函數被使用,如下:

$.post(url, [data], [callback])

‘callback’部分可以關聯一個函數,這個比較有意思,只有在資料(data)被載入成功的時候才會執行(譯註:此處為意譯,沒看懂原文:<).

如果返回的資料(data)不為空白(也就是說,有東西要顯示),那就顯示搜尋提示框並且使用返回的資料(data)來代替其中的html代碼。

就這麼簡單!

PHP背景程式(rpc.php)

如你所知(譯註:不好意思,看王小波就學會了這麼個口頭禪),我的php背景程式都叫做rpc.php(RPC指遠端程序呼叫),而沒用它實際執行的功能來命名,但是也還不錯了。

// PHP5 Implementation - uses MySQLi.
$db = new mysqli(‘localhost’, ‘root’ ,”, ‘autoComplete’);
if(!$db) {
    // Show error if we cannot connect.
    echo ‘ERROR: Could not connect to the database.’;
} else {
    // Is there a posted query string?
    if(isset($_POST[‘queryString’])) {
        $queryString = $_POST[‘queryString’];
        // Is the string length greater than 0?
        if(strlen($queryString) >0) {
        // Run the query: We use LIKE ‘$queryString%’
        // The percentage sign is a wild-card, in my example of countries it works like this…
        // $queryString = ‘Uni’;
        // Returned data = ‘United States, United Kindom’;

        $query = $db->query("SELECT value FROM countries WHERE value LIKE ‘$queryString%’ LIMIT 10");
        if($query) {
            // While there are results loop through them - fetching an Object (i like PHP5 btw!).
            while ($result = $query ->fetch_object()) {
                // Format the results, im using <li> for the list, you can change it.          
                // The onClick function fills the textbox with the result.
                echo ‘<li onclick="fill(’‘.$result->value.’‘);">’.$result->value.‘</li>’;
            }
        } else {
            echo ‘ERROR: There was a problem with the query.’;
        }
    } else {
        // Dont do anything.
    } // There is a queryString.
} else {
    echo ‘There should be no direct access to this script!’;
}
}

?>

PHP代碼解釋鑒於代碼中我已經加了很多注釋,在這裡我就不再說的很詳細了。一般情況下,需要接收這個 ‘QueryString’ 然後在其最後使用萬用字元產生一個查詢語句。這意味著在這種情況下,每次敲進去一個字元都需要產生一個查詢語句,如果一直都這樣做的話,恐怕MYSQL會受不了。但是為了盡量的簡化這個過程,這種做法對一個規模較小的應用應該沒什麼問題。這段php代碼你需要在自己的系統中稍作修改,比如你需要更新‘$query’到你自己的資料庫,需要看在哪裡放你資料庫表的列名等等。 CSS樣式我使用的是CSS3,天哪,它真的很好用,雖然在Firefox 或者Safari瀏覽器上會有功能限制。<style type="text/css">

.suggestionsBox {
    position: relative;
    left: 30px;
    margin: 10px 0px 0px 0px;
    width: 200px;
    background-color: #212427;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border: 2px solid #000;
    color: #fff;
}

.suggestionList {
    margin: 0px;
    padding: 0px;
}

.suggestionList li {
    margin: 0px 0px 3px 0px;
    padding: 3px;
    cursor: pointer;
}

.suggestionList li:hover {
    background-color: #659CD8;
}
</style>

CSS代碼都很標準,沒什麼需要特別指出的。 主檔案HTML<div>

       <div>

      Type your county (for the demo):
<input size="30" id="inputString" onkeyup="lookup(this.value);" type="text" />

    </div>      <div class="suggestionsBox" id="suggestions" style="display: none;">

      <img src="upArrow.png" style="position: relative; top: -12px; left: 30px" alt="upArrow" />

      <div class="suggestionList" id="autoSuggestionsList">

</div>

    </div>

</div>

這是主檔案的部分html代碼,你需要添加的就是一個輸入框,並且把 ‘onkeyup’ 函數設定為lookup(this.value)。另外,我建議你不要修改它的ID,如果你不想修改上面的Javascript代碼的話。 我想你應該會想要看看最後的效果是什麼樣子,OK。

 

還有,

最後就是有用的連結了,我想你應該期待很久了。

Demo: Auto Complete Demo

Source ZIP: AutoComplete Source ZIP

如果有什麼問題,就在這裡留言,我想我肯定能夠協助你。

感謝你們的支援。

Jamie.

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.