なぜこれが機能しないのですか?
<script>
$(document).ready(function(){
$('#custom_field option').click(function(){
$('#custom_field_input').append('<tr><td></td></tr>');
$('#custom_field_input td:last').append($(this).find(":selected").text());
});
});
</script>
これには .change 関数があり、機能しますが、選択ドロップダウンの値に変更がない場合でもテキストを追加する必要があるため、私には関係ありません。
意味。
ユーザーが option1 をクリックすると、option1 のテキストが追加されます。
ユーザーがオプション 1 をもう一度クリックすると、別のオプション 1 テキストが追加されます。