study/javascript
jquery,javascript select option 변경
땅콩잉
2021. 10. 13. 11:15
728x90
jquery 로 셀렉트 옵션 변경하기!
$('select[name="color"]').val("info").attr("selected", "selected");
$('select[name="color"]').val('inverse');
javascript로 변경하기
document.getElementsByName('color')[0].value='danger';