我正在尝试使用Jquery自动完成功能获得输入。虽然我能够显示所需的值,但表单不会将其传递回代码。还有什么我需要做的吗?表格通过空白。
$(function() {
var availableTags = ['Software Engineer', 'Project manager'];
$("#id_j_title").autocomplete({
source: availableTags
})
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<body>
<form id="search-form" method="POST" action=".">
<p>
<label for="id_j_title">Enter a keyword for the job title for the new application:</label>
<input id="id_j_title" maxlength="11" name="j_title" type="text" />
</p>
And
<input type="submit" value="Select" />
<button>Back</button>
</form>
</body>
&#13;