Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created October 3, 2019 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/d43e10aff723335d4a709080851e4e6c to your computer and use it in GitHub Desktop.
Save codingwithsara/d43e10aff723335d4a709080851e4e6c to your computer and use it in GitHub Desktop.
JS Checkboxes 1
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>チェックボックスの値取得</title>
</head>
<body>
<div class="container">
<input type="checkbox" class="checks" value="あいうえお"> あ____<br>
<input type="checkbox" class="checks" value="かきくけこ"> か_____<br>
<input type="checkbox" class="checks" value="さしすせそ"> さ_____<br>
<button onclick="getValue()">値を取得</button>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment