随笔分类 -  JavaScript基础

摘要:[代码] 阅读全文
posted @ 2010-02-19 13:56 MikeLin 阅读(170) 评论(0) 推荐(0) 编辑
摘要:实现商品评级功能,从0到5级。其中blank.gif为一张透明图片,实现0分评级;star1.gif为一张星星图片;star0.gif为一张半透明星星图片:[代码] 阅读全文
posted @ 2010-02-19 13:20 MikeLin 阅读(213) 评论(0) 推荐(0) 编辑
摘要:本例实现使打开页面第一个文本框聚焦功能:[代码] 阅读全文
posted @ 2010-02-19 12:06 MikeLin 阅读(300) 评论(0) 推荐(0) 编辑
摘要:本例实现点击表头排序的功能:[代码] 阅读全文
posted @ 2010-02-19 11:51 MikeLin 阅读(603) 评论(0) 推荐(0) 编辑
摘要:ex.html如下:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<html>2<head>3<title>延时生效按钮</title>4<styletype="text/css">5... 阅读全文
posted @ 2010-02-03 11:23 MikeLin 阅读(294) 评论(0) 推荐(0) 编辑
摘要:default.css: [代码]  blue.css:[代码]  red.css:[代码]  white.css:[代码]  ex9.html:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<html>2<head>3... 阅读全文
posted @ 2010-02-03 11:09 MikeLin 阅读(398) 评论(0) 推荐(0) 编辑
摘要:ex7.html页面:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<html>2<head>3<title>ex7</title>4<styletype="text/css">5*{... 阅读全文
posted @ 2010-02-03 10:50 MikeLin 阅读(1939) 评论(0) 推荐(0) 编辑
摘要:以下是一个简单的父子窗口交互的实例,注意实例中检索的结果是随机模拟的:  ex5.html代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<html>2<head>3<title>ex5</title&g... 阅读全文
posted @ 2010-02-02 18:16 MikeLin 阅读(365) 评论(0) 推荐(0) 编辑
摘要:实现窗口最大化的基本思路是:首先打开一个“中转”页面,在该页面中用window.open方法打开一个最大化的窗口,并且在该窗口中将父窗口关闭。实例如下:  ex3.html:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1... 阅读全文
posted @ 2010-02-02 17:39 MikeLin 阅读(275) 评论(0) 推荐(0) 编辑
摘要:使用window.open方法即可打开新的浏览器窗口。使用window.opener可以访问父窗口。以下是一个实例:  ex1.html:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<!DOCTYPEhtmlPUBLIC"-//W3C/... 阅读全文
posted @ 2010-02-02 17:35 MikeLin 阅读(326) 评论(0) 推荐(0) 编辑
摘要:定时操作函数有4个:window.setInterval / window.clearInterval / window.setTimeout / window. clearTimeout一、window.setInterval和window.clearInterval一起使用,用法如下:代码Code highlighting produced by Actipro CodeHighlighter... 阅读全文
posted @ 2010-01-31 12:04 MikeLin 阅读(441) 评论(0) 推荐(0) 编辑