使用jq刷新页面及一些js函数

window.location.reload()刷新当前页面

parent.location.reload()刷新父亲对象(用于框架)

opener.location.reload()刷新父窗口对象(用于单开窗口)

top.location.reload()刷新最顶端对象(用于多开窗口)

一些javascript基本函数

一个小写转大写的js: document.getelementbyid(”output”).value = document.getelementbyid(”input”).value.touppercase(); 

js中的值类型:string,number,boolean,null,object,function 

当文件中出现多个form表单时.可以用document.forms[0],document.forms[1]来代替

状态栏的设置:window.status=”字符”; 

指定当前显示链接的位置:window.location.href=”url” 

取出窗体中的所有表单的数量:document.forms.length 

指定在不支持脚本的浏览器显示的html: 

当超链和onclick事件都有时,则老版本的浏览器转向a.html,否则转向b.html.
例:.html” onclick=”location.href=’b.html;return false”>dfsadf 

js中的all代表其下层的全部元素

isdisabled判断是否为禁止状态.disabled设置禁止状态 

window.focus()使当前的窗口在所有窗口之前. 

防止用户对文本框中输入文本:onfocus=”this.blur()” 

js中分为两种窗体输出:模态和非模态.window.showmodaldialog(),window.showmodeless() 

添加到收藏夹:external.addfavorite(”http://www.google.com”,”google”); 

js中的打印:window.print() 

js中的窗口滚动条:window.scroll(x,y) 

js中的窗口滚动到位置:window.scrollby 

window.history.back()返回上一页
window.history.forward()返回下一页
window.history.go(返回第几页,也可以使用访问过的url) 

document.write()不换行的输出
document.writeln()换行输出 

document.body.nowrap=true;防止链接文字折行.

变量.indexof(”字符”,起始位置),返回第一个出现的位置(从0开始计算) 
string.lastindexof(searchstring[,startindex])最后一次出现的位置. 

string.tolowercase()使字符串全部变为小写. 
string.touppercase()使全部字符变为大写. 

本文转载与http://www.cnblogs.com/jianmingyuan/p/5962729.html

你可能感兴趣的:(js,javascript,函数)