http://api.jqueryui.com/autocomplete/#option-sourceの Autocomplete ウィジェットを使用したい。contenteditable で使用できると書かれていますが、機能しません。ワードプレスでも使っています。だから多分これはエラーになるでしょう。次のエラーが表示されます。
"NetworkError: 404 Not Found - http://localhost/wordpress/wp-content/plugins/.../css/images/ui-bg_flat_75_ffffff_40x100.png"
しかし、私はこれも含めました:
wp_enqueue_script("quizEditorScript", plugins_url('js/quizEditor.js', QDB_PATH."qdbConnect"), array('jquery-ui-autocomplete', 'jquery-ui-dialog'));
私のテーブルは次のようになります。
<table id = "quiz_table">
...
"<td class = 'cate' contenteditable = 'true' tabindex = '"+tabId+"'>"+cate+"</td>" +
"<td class = 'diff' contenteditable = 'true' tabindex = '"+tabId+"'>"+diff+"</td>" +
...
「cate」でオートコンプリートを使用したい。
var availableTags = ["AAA"];
//jQuery.fn.val = jQuery.fn.html; //Im not sure how to use this
jQuery(".cate").autocomplete({
source: availableTags
});
詳細を追加する必要がありますか、それとも別の方法で行う必要がありますか?