欢迎来到福编程网,本站提供各种互联网专业知识!

整理的比较不错的JavaScript的方法和技巧第1/3页

发布时间:2007-02-27 作者: 来源:转载
适合阅读范围:对JavaScript一无所知~离精通只差一步之遥的人基础知识:HTMLJavaScript就这么回事1:基础知识1创建脚本块1:2:JavaScriptcodegoeshere3:2隐藏脚本代码1:2:5:在不支持JavaScript的浏览器中将不执行相关代码3浏览器不支持的时候显示1:2:Hellotot
适合阅读范围:对JavaScript一无所知~离精通只差一步之遥的人
基础知识:HTML


JavaScript就这么回事1:基础知识

1创建脚本块

1:
2:JavaScriptcodegoeshere
3:

2隐藏脚本代码

1:
2:
5:


在不支持JavaScript的浏览器中将不执行相关代码

3浏览器不支持的时候显示

1:

4链接外部脚本文件

1:


5注释脚本

1://Thisisacomment
2:document.write(“Hello”);//Thisisacomment
3:/*
4:Allofthis
5:isacomment
6:*/

6输出到浏览器

1:document.write(“Hello”);

7定义变量

1:varmyVariable=“somevalue”;

8字符串相加

1:varmyString=“String1”+“String2”;

9字符串搜索

1:
2:
7:

10字符串替换

1:thisVar.replace(“Monday”,”Friday”);


11格式化字串

1:
2:
21:

12创建数组

1:
2:
11:

13数组排序

1:
2:
11:

14分割字符串

1:
2:
10:

15弹出警告信息

1:
2:
5:

16弹出确认框

1:
2:
5:

17定义函数

1:
2:
8:

18调用JS函数

1:Linktext
2:Linktext

19在页面加载完成后执行函数

1:
2:Bodyofthepage
3:


20条件判断

1:
21指定次数循环

1:

22设定将来执行

1:

23定时执行函数

1:

24取消定时执行

1:

25在页面卸载时候执行函数

1:
2:Bodyofthepage
3:

JavaScript就这么回事2:浏览器输出


26访问document对象

1:
2:varmyURL=document.URL;
3:window.alert(myURL);
4:

27动态输出HTML

1:
2:document.write(“

Here'ssomeinformationaboutthisdocument:

”);
3:document.write(“
    ”);
    4:document.write(“
  • ReferringDocument:“+document.referrer+“
  • ”);
    5:document.write(“
  • Domain:“+document.domain+“
  • ”);
    6:document.write(“
  • URL:“+document.URL+“
  • ”);
    7:document.write(“
”);
8:


28输出换行

1:document.writeln(“a”);
2:document.writeln(“b”);

29输出日期

1:
2:varthisDate=newDate();
3:document.write(thisDate.toString());
4:

30指定日期的时区

1:
2:varmyOffset=-2;
3:varcurrentDate=newDate();
4:varuserOffset=currentDate.getTimezoneOffset()/60;
5:vartimeZoneDifference=userOffset-myOffset;
6:currentDate.setHours(currentDate.getHours()+timeZoneDifference);
7:document.write(“ThetimeanddateinCentralEuropeis:“+currentDate.toLocaleString());
8:

当前1/3页123下一页阅读全文

相关推荐