WebPrograming관련
input
Real_G
2007. 5. 2. 14:29
반응형
input 버튼을 클릭하면 self.location 나 location.href를 이용해서 다른 페이지로 이동 시킵니다.
<input type="button" value="확인" onClick="self.location='이동할페이지';">
<input type="button" value="확인" onClick="location.href='이동할페이지';">
[적용예]
<input type="button" value="확인" onClick="location.href='http://dizfeel.com';">
반응형