VB脚本的问题
<script language="VBScript">
sub check()
if frm1.user.value=empty then
msgbox "请输入您的留言昵称!"
focusto(0) <==============================这里是什么意思?
exit sub
end if
if frm1.email.value=empty then
msgbox "请输入您的电子邮件地址!"
focusto(1) <==============================这里是什么意思?
exit sub
end if
if instr(frm1.email.value, "@")=0 then
msgbox "请正确填写您的电子邮件地址!"
focusto(1) <==============================这里是什么意思?
exit sub
end if
if frm1.content.value=empty then
msgbox "请输入您的留言内容!"
focusto(2) <==============================这里是什么意思?
exit sub
end if
frm1.submit
end sub
sub focusto(x) <==============================这里是什么意思?
document.frm1.elements(x).focus() <==============================这里是什么意思?
end sub
</script>
谁可以帮我解释一下上面不懂的地方是什么意思吗
还有就是focusto(2) 这里面的数字是什么意思