.data( "autocomplete" )._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
if ( ( item.parent_term_id == "16" ) ) {
.append( "<a>" + (item.child_term ? item.child_term : + "") + "</a>" )
}
.appendTo( ul );
};
このコードは JqueryUi Autocomplete ウィジェットに属しています。「parent_term_id」が何かと等しい場合はオートコンプリートテキスト入力でアイテムを提案し、そうでない場合は何も提案しないようにします。(ワードプレスです)
しかし、そのifステートメントは機能していません。何か案が?