0%

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


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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:
<noscript></noscript>

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

//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() //使全部字符变为大写.

------ The End ------
您的认可是我不断进步的动力!