Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のセレクターに変数を渡そうとする非常に基本的な質問があります
var image = $('#'+$ID ul li).find('input').eq(0).val();
しかし、構文エラーがあります。何を変更する必要がありますか?
私はあなたがこれを望んでいると思います:
$('#' + $ID + ' ul li')...
もう一度文字列を開くのを忘れました。
$IDたまたま jQuery オブジェクトである場合に備えて:
$ID
$('#' + $ID.attr('id') + ' ul li')...