[jQuery] jQuery 풀다운 페이지 이동
페이지 정보
본문
/* jQuery 용 */
<script>
$(function () {
$('select[name=selectlink]').change(function() {
if ($(this).val() != '') {
window.location.href = $(this).val();
}
});
});
</script>
/* JavaScript 용 */
<script>
window.onload = function() {
// <select id="selectlink">
var elem1 = document.getElementById('selectlink');
elem1.addEventListener('change', function() {
if (elem1.selectedIndex != 0) {
top.location.href = elem1.options[elem1.selectedIndex].value;
}
});
};
</script>
<select name="selectlink">
<option value="">선택</option>
<option value="http://zeronara.net">zeronara</option>
<option value="http://yhplus.jp">yhplus</option>
</select>
댓글목록
등록된 댓글이 없습니다.