<html> <head> <base href="<%=basePath%>"> <title>My JSP 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> This is my JSP page. <br> <form action="servlet/day" method="post"> <table> <tr><td>用户名:</td><td><input type="text" name="username"></td></tr> <tr><td>密 码:</td><td><input type="password" name="password"></td></tr> <tr><td>性 别:</td><td><input type="radio" name="sex" value="男" checked="checked">男<input type="radio" name="sex" value="女">女</td></tr> <tr><td>爱 好;</td><td><input type="checkbox"name="hobby"value="台球">台球 <input type="checkbox"name="hobby"value="篮球">篮球 <input type="checkbox"name="hobby"value="足球">足球 <tr><td colspan="2" align="center" valign="middle"><input type="submit" value="提交"></td></tr> </table> </form> </body> <ml>
1.代码没有注释
2.代码格式布局都不合理
3.整个代码运行后,界面布局不整齐