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.
javascriptで選択した値を変更し、コードビハインドページで選択した値を取得する方法は? AutoPostBack は false に設定されています。
次のように変更できます。
var ddl = document.getElementById('ddl-id'); var opts = ddl.options.length; for (var i=0; i<opts; i++){ if (ddl.options[i].value == "some-value"){ ddl.options[i].selected = true; break; } }