Skip to content

Instantly share code, notes, and snippets.

@catoidrobo
Created February 15, 2016 03:14
Show Gist options
  • Save catoidrobo/b2ddbfdc2f99c0f56583 to your computer and use it in GitHub Desktop.
Save catoidrobo/b2ddbfdc2f99c0f56583 to your computer and use it in GitHub Desktop.
全ての入力フォームではなく、個別の入力フォームの値を空にするボタン
<script>
function clearForm(clear_form_name) {
document.contents.elements[clear_form_name].value = "";
}
</script>
<input type="button" value="クリア" onClick="clearForm('clear_form_name')">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment