반응형
한페이지에 한데이터로 기능은 다른걸 써야한다..
그래서 원초적인방법으로
form 안에 form을 써서 두가지의 기능을 써볼려고했다.
<form action = /test1>
<form action = /test2>
<input type ="submit">
</form>
<input type = "submit">
</form>
될까?
당연히 안된다.
이것저것 해보다가 form을 하나로 쓰고
submit 에 다른 action 값을 넣기만 한다는걸 배웠다
이럴때는 이런식으로 사용해버리면된다.
<form>
<input type = "submit" onclick="javascript: form.action='/test1;">
<input type = "submit" onclick="javascript: form.action='/test2;">
</form>
그럼 엑션 두가지를 사용할수있게된다.
반응형
댓글