随笔分类 - JavaScript基础
摘要:实现商品评级功能,从0到5级。其中blank.gif为一张透明图片,实现0分评级;star1.gif为一张星星图片;star0.gif为一张半透明星星图片:[代码]
阅读全文
摘要:本例实现使打开页面第一个文本框聚焦功能:[代码]
阅读全文
摘要: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...
阅读全文
摘要: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...
阅读全文
摘要: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*{...
阅读全文
摘要:以下是一个简单的父子窗口交互的实例,注意实例中检索的结果是随机模拟的: ex5.html代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<html>2<head>3<title>ex5</title&g...
阅读全文
摘要:实现窗口最大化的基本思路是:首先打开一个“中转”页面,在该页面中用window.open方法打开一个最大化的窗口,并且在该窗口中将父窗口关闭。实例如下: ex3.html:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1...
阅读全文
摘要:使用window.open方法即可打开新的浏览器窗口。使用window.opener可以访问父窗口。以下是一个实例: ex1.html:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<!DOCTYPEhtmlPUBLIC"-//W3C/...
阅读全文
摘要:定时操作函数有4个:window.setInterval / window.clearInterval / window.setTimeout / window. clearTimeout一、window.setInterval和window.clearInterval一起使用,用法如下:代码Code highlighting produced by Actipro CodeHighlighter...
阅读全文