Web程序设计中num=Text1.value是什么意思?
<html><head><title>判断奇偶</title></head><body><h3>请在文本框中输入一个整数</h3><inputtype="text"nam...
<html> <head><title>判断奇偶</title></head> <body> <h3>请在文本框中输入一个整数</h3> <input type="text" name="Text1" size="10">   <input type="button" name="Button1" value="判断奇偶"> <script language="vbscript"> sub Button1_onclick num=Text1.value if not IsNumeric(num) then msgbox"您输入的不是数值,请重新输入。" else p=num mod 2 if p=1 then msgbox num &"为奇数" else msgbox num &"为偶数" end if end if End sub </script> </body> </html>
展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询