Jqueryのオートコンプリートから値を取得しているところからformからtextInputを取得しようとしています。しかし、選択された値はフォームに渡されていません。私は何が欠けている。Jqueryオートコンプリートの値がdjangoのフォームに渡されていません
$(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>
<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 Please enter a keyword to search for
<input type="submit" value="Select" />
<button>Back</button>
</form>
感謝。私は同様に考えましたが、理由はJqueryではなく何か他のものでした。 – krishan