黑鹰ASP教程第十二课(javascript)
发布时间:2024-11-10
发布时间:2024-11-10
formcallback.asp
使用javascript在客户端处理表单中数据<script language=javascript> function addone() { var v1=document.f1.t1.value; v1=parseInt(v1)+1; document.f1.t1.value=v1; } </script> <form name="f1"> <input type="text" name="t1" value="8"> <input type="button" value="处理" onClick="addone()"> </form>
settimeout.asp
setTimeout()函数的使用window.setTimeout(代码, 经过的毫秒数 [, 使用的脚本语言]) 功能:经过X毫秒后触发事件函数 返回:一个整数标识 setTimeout(“alert(‘haha’),1000)
cleartimeout.asp
clearTimeout()函数的使用window.clearTimeout(整数标识) 功能:清除某个以前设置的settimeout函数 var a=setTimeout(“alert(‘haha’),1000); clearTimeout(a);
setInterval.asp
setInterval函数的使用window. setInterval(代码, 经过的毫秒数 [, 使用的脚本语言])
功能:每经过指定毫秒值后计算一个表达式。 返回:一个整数标识
clearInterval函数的使用window. clearInterval(整数标识) 功能:清除interval设置的定时函数。
createPopup 函数的使用 window.createPopup( [vArgs])
功能:创建弹出窗口 返回:一个弹出对话框的实例标识
Popup.asp