我想設置/選擇文本基於我選擇的文本。例如,我有以下代碼不選擇文本,而是將另一行添加到選項。設置或選擇文本的下拉列表文本:選擇此處或任何其他文本
我有以下內容的下拉列表:
<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");
如何選擇基於文本的選項?