Skip to the content.

폼 요소에 제공되는 중복된 아이디

폼의 아이디를 제공하는경우는

<form> onsubmit 속성 부제

</code>


## 활용
```javascript
function fnsubmit(_this){
  if(_this.type.value == 'edit'){
    _this.action=_this.editAction.value;
  }
}
<form action='#abc' onsubmit="return fnsubmit(this)">
<input type=hidden name=type value=edit>
<input type=hidden name=editAction value='http://naver.com'>
<input type=text name=keyword>
</form>