继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

JavaScript之js的一些基础方法

代码写到手抽筋
关注TA
已关注
手记 294
粉丝 26
获赞 113

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(变量);测试是否为数值型. 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP