반응형
익스플로러(explorer)에서는 location.href가 실행이되는데
파이어폭스(ff : firefox)에서 반응이 없다.
이럴땐 location.replace를 사용한다.
예>수정 전 :
<select name="urlChange" onchange="location.href('http://okkks.tistory.com/');">
<option name="okkks.tistory.com" value="http://okkks.tistory.com">http://okkks.tistory.com</option>
</select>
수정 후 : <select name="urlChange" onchange="location.replace('http://okkks.tistory.com/');">
반응형