前提・実現したいこと
datalistタグを使用しているのですが、空ではない場合にマッチするものを2つだけリストとして表示したいのですが、そちらの処理の書き方がわからないです。。
配列からdatalistに全件表示しているソース
$.each(sugArray, function () { let item = document.createElement('option'); item.value = this.itemName; item.text = this.code; document.getElementById('suggest').appendChild(item); });
試したこと
以下の中の処理がわからないです。。
$('input[name="sample"]').on('input', function () { const val = $(this).val(); if(val !== ""){ });
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー