私が選択したテキストに基づいてテキストを設定/選択したい。たとえば、テキストを選択していない代わりにオプションに別の行を追加するコードがあります。ドロップダウンリストのテキストをテキストに設定または選択:ここをクリックまたは他のテキストを選択
私は、次のとドロップダウンリストがあります:
<select id="fruit"> <option value="">select here</option> <option value="1">apple</option> <option value="2">pineapple</option> <option value="3">orange</option><select>
$("#myList option:selected").text("pineapple");
$("#myList option:selected").text("select here");
は、どのように私は、テキストに基づいてオプションを選択することができますか?