1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Roster</title> <link rel="stylesheet" href="meibo.css" /> <script src="meibo.js"></script> </head> <body> <div class="web-app"> <form name="info"> name<input type="text" name="name" /><br /> sex<input type="radio" name="sei" checked />male <input type="radio" name="sei" />female<br /> </form> <button onclick="touroku()">add</button> <table id="meibo" border="1"><tr><th>name</th><th>sex</th></tr></table> </div> </body> </html>