auto suggest ajax for php

前端 未结 1 1718
陌清茗
陌清茗 2021-01-17 04:19

i have an html form ,php scrip and jquery. i need a ajax code to make auto suggest from my php script. following is the code...

Form.html

<
相关标签:
1条回答
  • 2021-01-17 04:23

    jSuggest makes GET requests by default. You have to add:

    type: "POST"
    

    in the rules.

    There are a few other major errors in your jSuggest rules. You should read the documentation: http://scottreeddesign.com/project/jsuggest

    0 讨论(0)
提交回复
热议问题