js
[jQuery] select Box ๊ฐ์ change (trigger)
natrue
2021. 4. 8. 11:00
728x90
trigger
ํน์ ์ด๋ฒคํธ ์ ํ์ ๋ํด ์ ํ๋ ์์์ ์ฐ๊ฒฐ๋ ๋ชจ๋ ํธ๋ค๋ฌ์ ๋์์ ์คํ = trigger๋ ์ด๋ค ํจ์๋ฅผ ์คํ์์ผ์ฃผ๋ ํจ์
์ฌ์ฉ์์ ์ ๋ ฅ์์ด ์ด๋ฒคํธ๋ฅผ ์คํ ์ํฌ๋ ์ ์ฉํ๊ฒ ์ฌ์ฉ
<select class="checkBox">
<option value="first">one</option>
<option value="seCond">two</option>
</select>
$(document).ready(function(){
$('.checkBox').val('seCond').trigger('change');
});