|
星期日 |
星期一 |
星期二 |
星期三 |
星期四 |
星期五 |
星期六 |
所花时间(包括上课) |
08:15- 09:30
|
08:00- 9:50
|
19:20-22:50 |
21:11- 23:56 |
20:35- 22:10 |
|
|
代码量(行) |
0行 |
0行 |
180行 |
260行 |
0行 |
120行 |
|
博客量(篇) |
0篇 |
0篇 |
0篇 |
0篇 |
0篇 |
1篇 |
|
了解到的知识点 |
1. jsp如何将数据库中的内容显示到下拉列表中, <select id="select1" name="select1">
|
业务流程图和数据流程图的区别,业务流程图就是用一些规定的符号及连线来表示某个具体务处理过程。业务流程图的绘制是根据系统详细调查过程中所得的资料, 按业务实际处理过程。 |
|
当<input type="button">时,何如enter实现tab键。 但是如果<input type="submit"> 时却不能实现。 |
对文本框的输入文字个数的限制: <textarea name="Trusts_Ind" style="850px;height:100px;line-height:30px;" id="Trusts_Ind" onKeyDown="gbcount(this.form.Trusts_Ind,this.form.total,this.form.used,this.form.remain);" onKeyUp="gbcount(this.form.Trusts_Ind,this.form.total,this.form.used,this.form.remain);"> function checktext(text) function gbcount(message,total,used,remain) |
学会了对文本框信息输入格式不正确时如何自后面显示提示信息:
function showError(){ <input name="pass" type="password" id="pass" placeholder="6-20个字母数字" onchange="showError();"> |