摘要: 给客户看的是前台,是管理员看的是后台 阅读全文
posted @ 2013-04-14 21:58 springstudent 阅读(165) 评论(0) 推荐(0) 编辑
摘要: <td>姓名:</td><td><input type="text" name="student.name" size="20"/><div id="usernameerror"></div></td>在input后面加一个div,然后跟这个div取个独一无二的id(usernameError)document.getElementById("usernameError");通过id号来拿到某一个对象,这样我们就 阅读全文
posted @ 2013-04-14 18:44 springstudent 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.woyaofeng.com/80.html 阅读全文
posted @ 2013-04-14 13:29 springstudent 阅读(154) 评论(0) 推荐(0) 编辑
摘要: JavaScript是由Netscape公司开发并随Navigator导航者一起发布的、介于Java与HTML之间、基于对象事件驱动的编程语言,不需要Java编译器,而是直接运行在Web浏览器中,它的前身是Live Script。 JScript是一种类似JavaScript的语言。 1.最开始web上只有静态的html 2.为了满足更好的交互需求,netscape开发了在Navigator(一种手机浏览器)中使用的LiveScript语言,后改名为JavaScript 3.Microsoft发行jscript用于internet explorer. 4.最初的jscript和javascri 阅读全文
posted @ 2013-04-14 10:54 springstudent 阅读(508) 评论(0) 推荐(1) 编辑
摘要: 可以使用JavaScript动态创建选项,并将它们添加到选择框中。添加选项的方式有很多,第一种方式就是使用如下所示的DOM方法:var selectbox = document.getElementById("selLocation");var newOption = document.createElement("option");newOption.appendChild(document.createTextNode("Option text"));newOption.setAttribute("value" 阅读全文
posted @ 2013-04-14 09:42 springstudent 阅读(2445) 评论(0) 推荐(0) 编辑
摘要: OptionAn option in a selection list. 客户端对象 实现版本 Navigator 2.0Navigator 3.0: 添加了 defaultSelected 属性; text 属性 can be changed to change the text of an option 创建源The Option constructor or the HTML OPTION tag. To create an Option object with its constructor: new Option(text, value, defaultSelected, s... 阅读全文
posted @ 2013-04-14 09:34 springstudent 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: 选中你想移动的多行代码,然后按 tab 键是向右移动,选中代码,然后按 shift+tab 反向(即向左)移动。 阅读全文
posted @ 2013-04-14 08:58 springstudent 阅读(378) 评论(0) 推荐(0) 编辑