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()
document.getelementbyid(”output”).value = document.getelementbyid(”input”).value.touppercase();
string,number,boolean,null,object,function
//当文件中出现多个form表单时.可以用以下来代替 document.forms[0],document.forms[1] //状态栏的设置: window.status=”字符”;
window.location.href=”url”
document.forms.length
<noscript></noscript>
<a href=”a.html” onclick=”location.href=’b.html’;return false”>dfsadf</a>
isdisabled disabled
window.focus()
onfocus=”this.blur()”
window.showmodaldialog() window.showmodeless()
external.addfavorite(”http:
window.print()
window.scroll(x,y)
window.scrollby
window.history.back() window.history.forward() window.history.go( 返回第几页,也可以使用访问过的url)
document.write() document.writeln()
document.body.nowrap=true;
.indexof(”字符”,起始位置),
string.lastindexof(searchstring[,startindex])
string.tolowercase() string.touppercase()
|