jQuery自动完成从函数获取而不是文件

时间:2015-09-02 14:51:47

标签: php jquery

我想从函数中获取json数据而不是文件。

如何将 autocomplete.php 更改为 PHP函数

我的代码:

<html>
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<script>
$(function() {
    $( "#skills" ).autocomplete({
        source: 'autocomplete.php'
    });
});
</script>
</head>
<body>
<div class="ui-widget">
    <label for="skills">Skills: </label>
    <input id="skills">
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

将get或post参数添加到你的ajax,例如 action = func1 ,并在你的php文件中进行切换,在动作的情况下是“func1”只需调用func1()。