1. onkeydown="javascript: if (event.keyCode == 13) {chkform();}" 이런식으로 체크한다. 함수 호출로 chkform(); view source print? 01.function chkform() 02.{ 03.var f = document.fo_search; 04.if(f.addr1.value == '') 05.{ 06. alert('지역을 선택해주세요.'); 07. f.addr1.focus(); 08. return false; 09.}else{ 10. document.fo_search.submit(); 11.} 12.} document.fo_search.submit(); 이런식으로 form의 submit 실행
CSS3 gives us the ability to create rounded corners with the border-radius property. But as you might already know, this new feature is not recognized in Internet Explorer 8 (IE8) and its earlier versions. So when you apply CSS3 Border Radius to an element, it still appears as a box with pointed tips. You may find a lot of different advice on the Internet suggesting you ignore IE8. You wish you ..