abstrait:<!DOCTYPE html> <html> <head> <title>小案例</title> <meta charset="utf-8"> <style type="text/css"> table{border: 1px&
<!DOCTYPE html> <html> <head> <title>小案例</title> <meta charset="utf-8"> <style type="text/css"> table{border: 1px solid #ccc;border-collapse: collapse;} th,td{text-align: center;border: 1px solid #ccc} </style> </head> <body> <h2>表格 </h2> <section> <table> <tr> <th>這是表頭1</th> <th>這是表頭2</th> <th>這是表頭3</th> </tr> <tr> <td colspan="3">這是一列</td> </tr> <tr> <td rowspan="2" >這是一行</td> <td>2</td> <td>3</td> </tr> <tr> <td>2</td> <td>3</td> </tr> </table> </section> <h2>表單</h2> <section> <form method="GET" action="ipnx.cn"> <p>用戶名<input type="text" name="text"></p> <span style="display: inline-block; width: 46px">密碼</span><input type="password" name="password"> <p style="margin-left: 175px"><input type="submit" name="submit"></p> </form> </section> </body> </html>
Professeur correcteur:西門大官人Temps de correction:2019-04-20 13:43:43
Résumé du professeur:思考一下,表單中的method起什么作用?action呢?