javascript如何通過其 ID 設置選擇元素的選定選項?
Temperature: 0 °C
如題,透過javascript來針對某個select的option來做選定。
document.getElementById("要用來設置select的ID").selectedIndex=第幾個option;
或者
document.getElementById("要用來設置select的ID").options.namedItem("第幾個option").selected=true;
或者
document.getElementById("要用來設置select的ID").options[第幾個option].selected=true;
以上紀錄~
#故事 #javascript #select #option