js
下面介绍全页面刷新方法:有时候可能会用到
window.location.reload()刷新当前页面.
parent.location.reload()刷新父亲对象(用于框架)
opener.location.reload()刷新父窗口对象(用于单开窗口)
top.location.reload()刷新最顶端对象(用于多开窗口)
下面再介绍一些javascript基本函数
1.document.write(”");为 输出语句
2.js中的注释为//
3.传统的html文档顺序是:document->html->(head,body)
4.一个浏览器窗口中的dom顺序是:window->
(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getelementbyid(”表单中元素的id号”).name(或
value)
6.一个小写转大写的js: document.getelementbyid(”output”).value =
document.getelementbyid(”input”).value.touppercase();
7.js中的值类型:string,number,boolean,null,object,function
8.js中的字符型转换成数值型:parseint(),parsefloat()
9.js中的数字转换成字符型:(”"+变量)
10.js中的取字符串长度是:(length)
11.js中的字符与字符相连接使用+号.
12.js中的比较操作符有:==等于,!=不等于,>,>=,<.<=
13.js中声明变量使用:var来进行声明
14.js中的判断语句结构:if(condition){}else{}
15.js中的循环结构:for([initial expression];[condition];[upadte expression]) {inside
loop}
16.循环中止的命令是:break
17.js中的函数定义:function functionname([parameter],…){statement[s]}
18.当文件中出现多个form表单时.可以用document.forms[0],document.forms[1]来代替.
19.窗口:打开窗口window.open(), 关闭一个窗口:window.close(), 窗口本身:self
20.状态栏的设置:window.status=”字符”;
// 跳转路径
window.location.href="url"
// 刷新当前页面
window.location.reload()
<input type=button value=剪切 onclick="document.execCommand('Cut')">
<input type=button value=拷贝 onclick="document.execCommand('Copy')">
<input type=button value=粘贴 onclick="document.execCommand('Paste')">
<INPUT type=button value=打印 onclick="document.execCommand('Print')">
<input type=button value=全选 onclick="document.execCommand('SelectAll')">
<input type=button value=撤消 onclick="document.execCommand('Undo')">
<input type=button value=删除 onclick="document.execCommand('Delete')">
<input type=button value=黑体 onclick="document.execCommand('Bold')">
<input type=button value=斜体 onclick="document.execCommand('Italic')">
<input type=button value=下划线 onclick="document.execCommand('Underline')">
<input type=button value=停止 onclick="document.execCommand('stop')">
<input type=button value=保存 onclick="document.execCommand('SaveAs')">
<input type=button value=另存为 onclick="document.execCommand('Saveas',false,'c:\\test.htm')">
<input type=button value=字体 onclick="document.execCommand('FontName',false,fn)">
<input type=button value=字体大小 onclick="document.execCommand('FontSize',false,fs)">
<input type=button value=刷新 onclick="document.execCommand('refresh',false,0)">
<input type=button value=刷新 onclick="window.location.reload()">
<input type=button value=前进 onclick="window.history.go(1)">
<input type=button value=后退 onclick="window.history.go(-1)">
<input type=button value=前进 onclick="window.history.forward()">
<input type=button value=后退 onclick="window.history.back()">