JavaScript之js的一些基础方法
1.window.location的属性:
protocol(http:);
hostname(localhost);
port(80);
host(localhost:80);
pathname(”/a/a.html”)
hash(”#giantgizmo”,指跳转到相应的锚记);
href(全部的信息) 。
2.window.location.reload();刷新当前页面.
3.parent.location.reload();刷新父亲对象(用于框架)
4.opener.location.reload();刷新父窗口对象(用于单开窗口)
5.top.location.reload();刷新最顶端对象(用于多开窗口)
6.window.history.back();返回上一页,
window.history.forward();返回下一页,
window.history.go;(返回第几页,也可以使用访问过的url)
7.document.body.nowrap=true;防止链接文字折行.
8.变量名.charat(第几位),取该变量的第几位的字符.
9.”abc”.charcodeat(第几个),返回第几个字符的ascii码值.
10.字符串连接:string.concat(string2);或用+=进行连接
11.变量.indexof(”字符”,起始位置);返回第一个出现的位置(从0开始计算)
12.string.lastindexof(searchstring[,startindex]);最后一次出现的位置.
13.string.match(regexpression);判断字符是否匹配.
14.string.replace(regexpression,replacestring);替换现有字符串.
15.string.split(分隔符);返回一个数组存储值.
16.string.substr(start[,length]);取从第几位到指定长度的字符串.
17.string.tolowercase();使字符串全部变为小写.
18.string.touppercase();使全部字符变为大写.
19.parseint(string[,radix(代表进制)]);强制转换成整型.
20.parsefloat(string[,radix]);强制转换成浮点型.
21.isNan(变量);测试是否为数值型.
共同学习,写下你的评论
评论加载中...
作者其他优质文章