摘要: 原文: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) 编辑
摘要: 打开菜单“高级”-“配置”,在打开的对话框左边找“文件处理”-“备份”,在右边选择“不备份”,再单击“确定”就行了。 阅读全文
posted @ 2013-04-13 20:59 springstudent 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 在myeclipse的jsp页面,如下:并不会报错,当时在js页面写就会报上述错误(下面这种写法并没有错误,但是下面这种写法在js页面中页面报错)function document.onclick(){ if(WebCalendar.eventSrc != window.event.srcElement) hiddenCalendar(); }解决方法:改成如下这种写法,上述错误就可以解决document.onclick = function(){ if(WebCalendar.eventSrc != window.event.srcElement) hiddenCalen... 阅读全文
posted @ 2013-04-13 20:19 springstudent 阅读(753) 评论(0) 推荐(0) 编辑
摘要: 我用的IE9,反正在我电脑上始终无法修改成功即使我设置如下,还不行打开IE7,在“工具—>Internet 选项—>安全—>选中Internet”,点击“自定义级别”,在【脚本】-【允许状态栏通过脚本更新】中选择“启用”就行了像这种修改,现在大部分主流浏览器都给拦截了,低版本的浏览器可能还有用 阅读全文
posted @ 2013-04-13 10:23 springstudent 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 1.window(代表整个浏览器窗口) 1) 当前窗口被称之为window,window这个是一个内置的对象 2) 新开窗口 3) 通过本地窗口控制新开窗口 window.status():现在已经不再使用window.status()修改浏览器的状态栏了,不需要掌握,IE9中反正我用它设置状态栏不起作用(重要) window.open(): 就是弹新窗口的意思 window.open("index.jsp");//当我们第一次访问该页面是会 弹出index.jsp窗口<script type="text/javascript"> windo 阅读全文
posted @ 2013-04-13 10:16 springstudent 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/SkySoot/archive/2012/04/12/2445007.html 阅读全文
posted @ 2013-04-13 09:29 springstudent 阅读(140) 评论(0) 推荐(0) 编辑