LI をクリックしようとしていますが、その li の値を検索する値として検索ボックス入力に送信します。
LI からクラスを削除できますが、LI 自体を削除する方法がわかりません。私はおそらくこれを完全に間違っています。
$(function(){
//var art = $('li.inliner').val();
$('li.inliner').on('click',function(){// select the artist from the ul
$( this ).clone() //copy it
.removeClass("inliner") //remove the inliner class
//remove the li from the clone??
.appendTo( "input(value)?? ); //this needs to be inserted into the search input as the value
});
})
現在、クリックした LI をクラスを削除して div に送信できますが、それでも LI です。また、それを入力値にする方法もわかりません。どんな助けでも大歓迎です。